@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sarabun:wght@400;500;600;700&display=swap");

:root {
  --ivory: #faf8f3;
  --mist: #f4f0e8;
  --sand: #e7dfd1;
  --gold: #c8a96b;
  --gold-deep: #a88445;
  --charcoal: #2e2a26;
  --warmgray: #6e665e;
  --softnight: #1e232d;
  --white: #ffffff;
  --surface: rgba(255, 255, 255, 0.72);
  --border: rgba(231, 223, 209, 0.95);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-button: 0 10px 30px rgba(46, 42, 38, 0.18);
  --shadow-card: 0 16px 40px rgba(46, 42, 38, 0.06);
  --radius-pill: 999px;
  --radius-card: 2rem;
  --radius-panel: 1.5rem;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Prompt", sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.mobile-menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a.button {
  font: inherit;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(231, 223, 209, 0.75);
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: blur(18px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.lifeon-logo {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  line-height: 1 !important;
  gap: 3px !important;
  font-size: initial !important;
  letter-spacing: initial !important;
  text-transform: none !important;
}

.lo-wordmark {
  display: inline-flex !important;
  align-items: center !important;
  font-family: Inter, sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.35rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
}

.lo-tag {
  display: block !important;
}

.lo-life {
  color: #4A80C4 !important;
}

.lo-on {
  color: #1A2B5A !important;
  display: inline-flex;
  align-items: center;
}

.lo-on svg {
  stroke: #4A80C4 !important;
  width: 1em;
  height: 1em;
  margin: 0 0.01em;
}

.lo-tag {
  display: block !important;
  font-family: Inter, sans-serif !important;
  font-size: 0.42rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  color: #7A8BAA !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link,
.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(46, 42, 38, 0.74);
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-parent:hover,
.nav-item:focus-within .nav-parent {
  color: var(--charcoal);
}

.nav-item {
  position: relative;
}

.nav-parent::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 0.75rem);
  min-width: 250px;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-group + .dropdown-group {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(231, 223, 209, 0.9);
}

.dropdown-label {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.dropdown a {
  display: block;
  padding: 0.45rem 0;
  font-size: 0.95rem;
  color: rgba(46, 42, 38, 0.84);
}

.dropdown a:hover {
  color: var(--charcoal);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(46, 42, 38, 0.12);
  background: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow-button);
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}

.header-cta:hover,
.button-primary:hover,
.button-secondary:hover,
.button-ghost:hover,
.card-link:hover,
.line-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.button-primary:hover {
  background: rgba(46, 42, 38, 0.58);
}

.button-ghost:hover,
.button-secondary:hover {
  background: rgba(255, 255, 255, 0.55);
}

.mobile-nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(231, 223, 209, 0.5);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 8px rgba(46, 42, 38, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  align-items: center;
  justify-content: center;
  padding: 0;
}

.mobile-nav-toggle span,
.mobile-nav-toggle::before,
.mobile-nav-toggle::after {
  content: "";
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-nav-toggle span {
  margin: 0.28rem 0;
}

.mobile-nav-toggle.is-open::before {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.is-open span {
  opacity: 0;
}

.mobile-nav-toggle.is-open::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(231, 223, 209, 0.7);
  background: rgba(250, 248, 243, 0.98);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav .container {
  display: grid;
  gap: 0.35rem;
  padding: 0.8rem 0 1rem;
}

.mobile-nav a {
  padding: 0.9rem 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(231, 223, 209, 0.65);
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.page-hero,
.hero-section,
.backdrop-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-backdrop,
.hero-scrim,
.section-backdrop,
.section-scrim {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background-image: url("/site-assets/hero.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(250, 248, 243, 0.84) 0%, rgba(250, 248, 243, 0.58) 42%, rgba(250, 248, 243, 0.18) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.08) 100%);
}

.hero-content,
.section-content {
  position: relative;
  z-index: 1;
}

.page-hero {
  padding: 5.5rem 0 4rem;
}

.hero-section {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
}

.sleep-reset-hero .hero-backdrop {
  background-image: url("/site-assets/bedroom.jpg");
  background-position: center center;
}

.home-hero .hero-scrim {
  background:
    linear-gradient(90deg, rgba(250, 248, 243, 0.86) 0%, rgba(250, 248, 243, 0.56) 42%, rgba(250, 248, 243, 0.18) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.12) 100%);
}

.home-hero .eyebrow,
.home-hero .hero-title,
.home-hero .hero-subtitle {
  text-align: left;
}

.home-hero .hero-actions {
  justify-content: flex-start;
}

.home-hero .eyebrow {
  color: var(--gold-deep);
}

.home-hero .hero-subtitle {
  max-width: 38rem;
  color: rgba(46, 42, 38, 0.88);
  font-size: 1.08rem;
  font-weight: 400;
}

.sleep-reset-hero .hero-scrim {
  background:
    linear-gradient(90deg, rgba(250, 248, 243, 0.8) 0%, rgba(250, 248, 243, 0.5) 42%, rgba(250, 248, 243, 0.14) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.18) 100%);
}

.sleep-reset-hero .eyebrow {
  color: var(--gold-deep);
}

.sleep-reset-hero .hero-subtitle {
  max-width: 40rem;
  color: rgba(46, 42, 38, 0.88);
  font-size: 1.08rem;
  font-weight: 400;
}

.easy-sleep-backdrop .section-backdrop {
  background-image: url("/site-assets/product.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.easy-sleep-backdrop .section-scrim {
  background:
    linear-gradient(90deg, rgba(250, 248, 243, 0.9) 0%, rgba(250, 248, 243, 0.72) 36%, rgba(250, 248, 243, 0.38) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.14) 100%);
}

.easy-sleep-backdrop .eyebrow {
  color: var(--gold-deep);
}

.easy-sleep-backdrop .section-copy {
  color: rgba(46, 42, 38, 0.88);
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

.page-title,
.hero-title,
.section-title,
.card-title {
  font-family: "Prompt", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-title {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 500;
}

.page-title {
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 500;
}

.section-title {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 600;
  text-align: center;
}

.hero-subtitle,
.section-copy,
.card-copy,
.muted {
  color: var(--warmgray);
  line-height: 1.78;
  max-width: 42rem;
}

.section > .container > .reveal > .section-copy {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.5rem;
}

.button-primary,
.button-secondary,
.button-ghost,
.line-cta,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.95rem 1.5rem;
  border-radius: 1.25rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.button-primary,
.line-cta {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(46, 42, 38, 0.45);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(46, 42, 38, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.45);
  color: var(--charcoal);
  box-shadow: 0 2px 8px rgba(46, 42, 38, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.button-ghost {
  border: 1px solid rgba(231, 223, 209, 0.65);
  background: rgba(255, 255, 255, 0.35);
  color: var(--charcoal);
  box-shadow: 0 2px 8px rgba(46, 42, 38, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.section {
  padding: 7.5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.45);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.5rem;
}

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

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

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

.card,
.panel,
.funnel-card,
.feature-card,
.phase-card,
.product-card,
.article-card,
.citation-card,
.faq-card {
  border: 1px solid rgba(231, 223, 209, 0.55);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 4px rgba(46, 42, 38, 0.06);
}

.card,
.panel,
.feature-card,
.phase-card,
.product-card,
.article-card,
.citation-card,
.faq-card {
  padding: 1.6rem;
}

.article-card {
  border: 1px solid rgba(210, 200, 180, 0.6);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 8px rgba(46, 42, 38, 0.08);
  padding: 1.8rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.article-card:hover {
  box-shadow: 0 4px 16px rgba(46, 42, 38, 0.12);
  transform: translateY(-2px);
}

.funnel-card {
  padding: 2rem 1.8rem;
}

.phase-card {
  min-width: 0;
}

.phase-card .card-title {
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.phase-microline {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--gold);
}

.phase-grid {
  gap: 1rem;
}

.phase-grid .phase-card {
  padding: 1.35rem 1rem;
}

.phase-grid .phase-card .card-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.phase-grid .phase-card .card-title {
  font-size: clamp(1.1rem, 1.2vw, 1.4rem);
  line-height: 1.1;
  overflow-wrap: normal;
}

.phase-grid .phase-card .card-copy {
  font-size: 0.95rem;
  line-height: 1.62;
}

.card-kicker {
  margin-bottom: 0.8rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: left;
}

.card-title {
  margin: 0;
  font-size: clamp(1.1rem, 1.3vw, 1.35rem);
  font-weight: 600;
  text-align: left;
}

.card-copy {
  text-align: left;
}

.card-copy {
  margin: 0.9rem 0 0;
}

/* Article body styles */
.article-body {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--charcoal);
}

.article-body p {
  margin: 0 0 1.5rem;
}

.article-body h3 {
  font-family: "Prompt", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}

.article-body strong {
  font-weight: 600;
  color: var(--charcoal);
}

.article-body ul, .article-body ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.price-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.price-single {
  margin-top: 1.1rem;
}

.price-pair > div {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(231, 223, 209, 0.95);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.72);
}

.price-single > div {
  width: fit-content;
  min-width: 10.5rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(231, 223, 209, 0.95);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.72);
}

.price-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.price-value {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
}

.card-link {
  margin-top: 1.2rem;
  border: 1px solid rgba(46, 42, 38, 0.08);
  background: rgba(255, 255, 255, 0.7);
  width: fit-content;
}

.compact-actions .button-primary,
.compact-actions .button-secondary,
.compact-actions .button-ghost {
  flex: 0 0 auto;
  width: fit-content;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
}

.product-card-media {
  padding: 1.2rem 1.2rem 0;
}

.product-card-image {
  display: block;
  width: 100%;
  height: 16rem;
  padding: 1rem;
  border: 1px solid rgba(231, 223, 209, 0.88);
  border-radius: calc(var(--radius-card) - 0.15rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 240, 232, 0.76));
  object-fit: contain;
}

.product-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  padding: 1.2rem 1.6rem 1.6rem;
}

.product-card-title {
  margin: 0;
  font-size: clamp(1.55rem, 1.5vw, 1.9rem);
  line-height: 1.08;
}

.product-promise {
  margin: 0.72rem 0 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-whofor-block,
.product-benefits-block,
.product-highlights-block {
  margin-top: 1rem;
}

.product-whofor-label,
.product-section-label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-whofor {
  margin: 0;
  color: var(--warmgray);
  line-height: 1.72;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-description {
  margin: 0.9rem 0 0;
  color: var(--warmgray);
  line-height: 1.72;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-benefits {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-benefits li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-benefits li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

.product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
}

.product-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.82rem;
  border: 1px solid rgba(231, 223, 209, 0.95);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  line-height: 1.4;
  color: var(--charcoal);
}

.product-technology {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--warmgray);
}

.product-card-actions {
  margin-top: auto;
  padding-top: 1.35rem;
}

.product-card-actions .button-primary,
.product-card-actions .button-ghost {
  width: 100%;
  justify-content: center;
}

.product-detail-stack {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.product-detail-block {
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  scroll-margin-top: 7.5rem;
}

.product-detail-inner {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1.5rem;
}

.product-detail-media {
  padding: 0.4rem;
}

.product-detail-image {
  display: block;
  width: 100%;
  max-height: 28rem;
  padding: 1.2rem;
  border: 1px solid rgba(231, 223, 209, 0.88);
  border-radius: calc(var(--radius-card) - 0.15rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 240, 232, 0.82));
  object-fit: contain;
}

.product-detail-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.product-detail-kicker {
  margin: 0 0 0.8rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-detail-title {
  margin: 0;
  font-size: clamp(1.9rem, 2vw, 2.4rem);
  line-height: 1.05;
}

.product-detail-promise {
  margin: 0.8rem 0 0;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--charcoal);
}

.product-detail-description,
.product-detail-text,
.product-detail-technology {
  margin: 0;
  color: var(--warmgray);
  font-size: 1rem;
  line-height: 1.78;
}

.product-detail-description {
  margin-top: 1rem;
}

.product-detail-section {
  margin-top: 1.2rem;
}

.product-detail-label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-detail-benefits {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-detail-benefits li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.98rem;
  line-height: 1.58;
  color: var(--charcoal);
}

.product-detail-benefits li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

.product-detail-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
}

.product-detail-technology {
  margin-top: 0.85rem;
}

.product-detail-actions {
  margin-top: 1.5rem;
}

.product-detail-actions .button-primary {
  width: 100%;
  justify-content: center;
}

.product-grid-empty {
  margin: 0;
}

.products-need-sections {
  margin-top: 2rem;
}

.products-need-sections > * + * {
  margin-top: 1.5rem;
}

.products-need-sections .grid-2 {
  margin-top: 1.6rem;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 3rem;
  border: 1px solid rgba(231, 223, 209, 0.5);
  border-radius: 1.5rem;
  background: rgba(231, 223, 209, 0.3);
}

.stat-item {
  padding: 1.6rem 1.1rem;
  background: rgba(255, 255, 255, 0.55);
}

.stat-value {
  font-family: "Prompt", sans-serif;
  font-size: 2.1rem;
  font-weight: 500;
}

.stat-label {
  margin-top: 0.3rem;
  font-size: 0.88rem;
  color: var(--warmgray);
}

.pill-list,
.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 1.3rem 0 0;
  list-style: none;
}

.pill-list li,
.mini-list li {
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(231, 223, 209, 0.95);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.hero-need-pills {
  margin-top: 1.5rem;
}

.pill-link {
  color: inherit;
}

.pill-link:hover {
  color: var(--charcoal);
}

.split-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.split-grid .section-title {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.why-180-panel {
  overflow: hidden;
}

.why-180-grid {
  align-items: stretch;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.why-180-copy {
  margin-top: 1.2rem;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--warmgray);
}

.why-180-points {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.why-180-points li {
  padding-left: 1rem;
  border-left: 2px solid rgba(201, 165, 90, 0.45);
  color: var(--charcoal);
  font-size: 0.98rem;
  line-height: 1.7;
}

.why-180-points li + li {
  margin-top: 0.85rem;
}

.why-180-figure {
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(231, 223, 209, 0.78);
  border-radius: calc(var(--radius-card) + 0.1rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(244, 240, 232, 0.56));
  box-shadow: none;
}

.why-180-figure svg,
.why-180-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-card) - 0.25rem);
  opacity: 0.96;
}

.why-180-caption {
  margin-top: 1rem;
  max-width: none;
  font-size: 0.88rem;
  line-height: 1.72;
  color: var(--warmgray);
}

.visual-frame {
  min-height: 460px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--mist);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.certification-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.2rem;
  overflow-x: auto;
}

.certification-logo {
  flex: 0 0 auto;
  width: calc((100% - 3rem) / 5);
  min-width: 96px;
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certification-logo img {
  max-height: 64px;
  width: auto;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.diagram-intro {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.diagram-frame {
  margin-top: 2rem;
  padding: 2.25rem;
  border: 1px solid rgba(231, 223, 209, 0.9);
  border-radius: calc(var(--radius-card) + 0.2rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(244, 240, 232, 0.7));
  box-shadow: var(--shadow-soft);
}

.diagram-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: end;
}

.diagram-step {
  text-align: center;
}

.diagram-visual {
  position: relative;
  width: 9.5rem;
  height: 9.5rem;
  margin: 0 auto 1.15rem;
}

.diagram-circle,
.diagram-circle-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.diagram-circle {
  border: 3px solid rgba(200, 169, 107, 0.32);
}

.diagram-circle-inner {
  inset: 1.55rem;
  border: 2px solid rgba(231, 223, 209, 0.95);
  box-shadow: 0 10px 24px rgba(46, 42, 38, 0.06);
}

.diagram-circle.is-highlight {
  border-color: rgba(200, 169, 107, 0.95);
  background: linear-gradient(180deg, rgba(200, 169, 107, 0.15), rgba(255, 255, 255, 0.96));
}

.diagram-dot {
  position: absolute;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: var(--gold);
}

.diagram-dot.is-dark {
  background: rgba(46, 42, 38, 0.7);
}

.diagram-dot.a {
  left: 2.15rem;
  top: 3rem;
}

.diagram-dot.b {
  left: 4.55rem;
  top: 2.3rem;
}

.diagram-dot.c {
  left: 5rem;
  top: 5rem;
  width: 1.25rem;
  height: 1.25rem;
}

.diagram-circle-inner .diagram-dot.a {
  left: 1.1rem;
  top: 1.65rem;
}

.diagram-circle-inner .diagram-dot.b {
  left: 3.6rem;
  top: 1rem;
}

.diagram-circle-inner .diagram-dot.c {
  left: 3.85rem;
  top: 3.45rem;
}

.diagram-barrier {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  align-items: center;
  justify-items: center;
  padding-top: 0.75rem;
}

.diagram-bar {
  position: relative;
  width: 2.15rem;
  height: 7rem;
  border-radius: 999px;
  background: rgba(231, 223, 209, 0.95);
}

.diagram-bar::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.diagram-eye {
  position: absolute;
  inset: 2.45rem 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.diagram-eye::before {
  content: "";
  position: absolute;
  inset: 0.65rem 0.35rem;
  border-radius: 50% / 65%;
  background: rgba(231, 223, 209, 0.45);
}

.diagram-eye::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.diagram-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.diagram-subtitle {
  margin: 0.45rem 0 0;
  color: var(--warmgray);
  line-height: 1.65;
}

.diagram-caption {
  max-width: 52rem;
  margin: 1.35rem auto 0;
  text-align: center;
  color: var(--warmgray);
  line-height: 1.72;
}

.soft-note-card {
  align-self: start;
  padding: 1.25rem 1.35rem;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: none;
}

.soft-note-card .card-copy {
  font-size: 0.98rem;
  line-height: 1.68;
}

.sleep-reset-next-step {
  padding-bottom: 6.5rem;
}

.sleep-reset-faq {
  padding-top: 6.75rem;
  padding-bottom: 6.5rem;
}

.sleep-reset-disclaimer {
  padding-top: 6.75rem;
}

.faq-card details + details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(231, 223, 209, 0.8);
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
}

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

.faq-card p {
  margin: 0.85rem 0 0;
  color: var(--warmgray);
  line-height: 1.72;
}

.citation-card ul,
.text-list {
  padding-left: 1.1rem;
  color: var(--warmgray);
  line-height: 1.72;
}

.citation-card li + li,
.text-list li + li {
  margin-top: 0.8rem;
}

.breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--warmgray);
}

.breadcrumb a {
  color: var(--warmgray);
}

.breadcrumb span {
  color: var(--charcoal);
}

.site-footer {
  border-top: 1px solid rgba(231, 223, 209, 0.6);
  background: transparent;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1.5rem;
  padding: 3rem 0;
}

.footer-title {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-links {
  display: grid;
  gap: 0.6rem;
}

.footer-copy {
  margin: 0.6rem 0 0;
  color: var(--warmgray);
  line-height: 1.72;
}

.footer-note {
  padding: 1rem 0 2rem;
  color: var(--warmgray);
  font-size: 0.92rem;
}

.sticky-mobile-cta {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: calc(env(safe-area-inset-bottom) + 0.75rem);
  z-index: 55;
  display: none;
  justify-content: center;
  gap: 0.5rem;
  transition: opacity 220ms ease, transform 220ms ease;
}

.sticky-mobile-cta.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.sticky-mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.72rem 1rem;
  background: rgba(255, 255, 255, 0.54);
  color: var(--charcoal);
  border: 1px solid rgba(231, 223, 209, 0.95);
  box-shadow: 0 8px 24px rgba(46, 42, 38, 0.08);
  backdrop-filter: blur(14px);
  font-size: 0.94rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.22, 0.61, 0.36, 1), transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform, opacity;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .site-header-inner {
    min-height: 70px;
  }

  .mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 58;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 0.8rem 0 1rem;
    border-top: 0;
    background: rgba(250, 248, 243, 0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 16px 40px rgba(46, 42, 38, 0.08);
  }

  .mobile-nav .container {
    gap: 0.5rem;
    padding: 0;
  }

  .mobile-nav a {
    padding: 0.9rem 1.1rem;
    border: 1px solid rgba(231, 223, 209, 0.45);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 6px rgba(46, 42, 38, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
    font-weight: 500;
  }

  .mobile-nav a:last-child {
    border-bottom: 1px solid rgba(231, 223, 209, 0.95);
  }

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

  .grid-3,
  .grid-2,
  .split-grid,
  .site-footer-inner,
  .stat-strip {
    grid-template-columns: 1fr;
  }

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

  .diagram-visual {
    width: 6.5rem;
    height: 6.5rem;
  }

  .diagram-circle {
    border-width: 2px;
  }

  .diagram-dot { width: 0.55rem; height: 0.55rem; }
  .diagram-dot.a { left: 1.4rem; top: 2.6rem; }
  .diagram-dot.b { left: 3.1rem; top: 1.8rem; }
  .diagram-dot.c { left: 3.4rem; top: 3.6rem; }

  .diagram-circle-inner { inset: 1rem; }
  .diagram-circle-inner .diagram-dot.a { left: 0.6rem; top: 1.5rem; }
  .diagram-circle-inner .diagram-dot.b { left: 2.2rem; top: 0.8rem; }
  .diagram-circle-inner .diagram-dot.c { left: 2.4rem; top: 2.2rem; }

  .diagram-title { font-size: 0.75rem; }
  .diagram-subtitle { font-size: 0.65rem; }

  .why-180-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-inner {
    grid-template-columns: 1fr;
  }

  .home-hero-shell,
  .home-guide-grid,
  .home-knowledge-layout,
  .home-intro-grid,
  .home-knowledge-grid,
  .home-route-band {
    grid-template-columns: 1fr;
  }

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

  .visual-frame {
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(var(--container), calc(100% - 1.5rem));
  }

  .brand {
    gap: 0.6rem;
    font-size: 0.74rem;
    letter-spacing: 0.13em;
  }

  .brand-mark {
    width: 1.95rem;
    height: 1.95rem;
  }

  .mobile-nav {
    top: 70px;
    padding-bottom: 1.25rem;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-actions,
  .button-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    margin-top: 1.35rem;
  }

  .hero-actions > *,
  .button-row > * {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: min(100%, 18rem) !important;
  }

  .button-primary,
  .button-secondary,
  .button-ghost,
  .line-cta,
  .card-link {
    min-height: 2.7rem !important;
    padding: 0.7rem 1rem !important;
    font-size: 0.88rem !important;
    line-height: 1.35 !important;
    border-radius: 1rem !important;
    box-shadow: 0 2px 8px rgba(46, 42, 38, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .compact-actions .button-primary,
  .compact-actions .button-secondary,
  .compact-actions .button-ghost {
    flex: 0 0 auto !important;
    width: fit-content !important;
    min-height: 2.7rem !important;
  }

  .product-card-actions .button-primary,
  .product-card-actions .button-ghost {
    width: fit-content !important;
  }

  .product-detail-actions .button-primary {
    width: fit-content !important;
  }

  .hero-backdrop {
    background-position: 68% center;
  }

  .home-hero-panel {
    padding: 4.6rem 0 3rem;
  }

  .home-signal-panel {
    padding: 1.15rem;
  }

  .home-path-grid {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }

  .home-path-card {
    min-height: auto;
  }

  .home-guide-panel,
  .home-knowledge-card {
    padding: 1.3rem;
  }

  .home-kicker-chip {
    min-height: 2.1rem;
    padding: 0.5rem 0.8rem;
    font-size: 0.86rem;
  }

  .sleep-reset-hero .hero-backdrop {
    background-position: center top;
  }

  .sleep-reset-hero .hero-scrim {
    background:
      linear-gradient(180deg, rgba(250, 248, 243, 0.88) 0%, rgba(250, 248, 243, 0.62) 45%, rgba(250, 248, 243, 0.78) 100%),
      linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.12) 100%);
  }

  .sleep-reset-hero .hero-title,
  .sleep-reset-hero .hero-subtitle {
    color: var(--charcoal);
  }

  .easy-sleep-backdrop .section-backdrop {
    background-position: 62% center;
  }

  .sleep-reset-next-step,
  .sleep-reset-faq,
  .sleep-reset-disclaimer {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(250, 248, 243, 0.66) 0%, rgba(250, 248, 243, 0.46) 38%, rgba(250, 248, 243, 0.74) 100%),
      linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.08) 100%);
  }

  .section,
  .page-hero {
    padding: 5rem 0;
  }

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

  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .split-grid .panel:has(.video-frame) {
    padding: 0;
    border: none;
    background: none;
    box-shadow: none;
  }

  .split-grid .panel:has(.video-frame) .card-kicker,
  .split-grid .panel:has(.video-frame) .card-title,
  .split-grid .panel:has(.video-frame) .card-copy {
    padding: 0;
  }

  .video-frame {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-radius: 0;
    box-shadow: none;
    padding-top: 56.25%;
  }

  .diagram-frame {
    padding: 1rem;
  }

  .product-detail-block {
    padding: 1.2rem;
  }

  .product-detail-image {
    max-height: 20rem;
  }

  .why-180-figure {
    padding: 0.9rem;
  }

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

  .diagram-visual {
    width: 4.5rem;
    height: 4.5rem;
    margin-bottom: 0.6rem;
  }

  .diagram-circle {
    border-width: 2px;
  }

  .diagram-dot { width: 0.4rem; height: 0.4rem; }
  .diagram-dot.a { left: 0.9rem; top: 1.7rem; }
  .diagram-dot.b { left: 2.1rem; top: 1.2rem; }
  .diagram-dot.c { left: 2.3rem; top: 2.4rem; }

  .diagram-circle-inner { inset: 0.7rem; }
  .diagram-circle-inner .diagram-dot.a { left: 0.35rem; top: 1rem; }
  .diagram-circle-inner .diagram-dot.b { left: 1.4rem; top: 0.5rem; }
  .diagram-circle-inner .diagram-dot.c { left: 1.55rem; top: 1.5rem; }

  .diagram-bar { height: 3rem; }
  .diagram-bar::after { width: 0.35rem; height: 0.35rem; bottom: 0.15rem; }

  .diagram-eye { width: 1.2rem; height: 1.2rem; }

  .diagram-title { font-size: 0.6rem; }
  .diagram-subtitle { font-size: 0.55rem; }

  .sticky-mobile-cta {
    display: none !important;
  }::before {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0.55rem;
    font-size: 0.7rem;
  }
}

.shared-trust-row,
.section-footer-cta,
.article-next-step-block {
  margin-top: 1.5rem;
}

.shared-trust-row {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(200, 169, 107, 0.18);
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58));
  box-shadow: 0 18px 42px rgba(46, 42, 38, 0.05);
}

.shared-trust-row__header {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.shared-trust-row__title,
.section-footer-cta__eyebrow,
.article-next-step-block__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.shared-trust-row__copy,
.section-footer-cta__copy,
.article-next-step-block__copy {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--warmgray);
}

.shared-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.shared-cta-row--trust .shared-trust-link,
.shared-cta-row--article a {
  flex: 1 1 13rem;
}

.shared-trust-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.3rem;
  min-height: 3.5rem;
  padding: 0.95rem 1.1rem;
  border-radius: 1.1rem;
}

.shared-cta-row__caption {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(110, 102, 94, 0.9);
}

.section-footer-cta,
.article-next-step-block {
  padding: 1.5rem;
  border: 1px solid rgba(231, 223, 209, 0.94);
  border-radius: 1.65rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
}

.section-footer-cta__title,
.article-next-step-block__title {
  margin: 0.4rem 0 0.55rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.1;
}

.shared-cta-row--primary {
  margin-top: 1.1rem;
}

.shared-cta-row--article {
  margin-top: 1.15rem;
}

.home-hero-panel {
  max-width: 42rem;
  padding: 5.5rem 0 4.5rem;
}

.home-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  gap: 2rem;
  align-items: end;
}

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

.home-signal-panel {
  align-self: center;
  padding: 1.45rem;
  border: 1px solid rgba(231, 223, 209, 0.82);
  border-radius: calc(var(--radius-card) + 0.2rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.7)),
    radial-gradient(circle at top right, rgba(113, 225, 210, 0.14), rgba(113, 225, 210, 0));
  box-shadow: 0 20px 48px rgba(46, 42, 38, 0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-signal-panel__eyebrow {
  margin: 0;
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-signal-panel__title {
  margin: 0.6rem 0 0;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  line-height: 1.06;
}

.home-signal-grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.home-signal-card {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(231, 223, 209, 0.92);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.74);
  color: var(--charcoal);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.home-signal-card:hover,
.home-signal-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(200, 169, 107, 0.65);
  box-shadow: 0 14px 30px rgba(46, 42, 38, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.home-signal-card strong {
  font-size: 1rem;
  line-height: 1.28;
}

.home-signal-card span {
  color: var(--warmgray);
  font-size: 0.93rem;
  line-height: 1.55;
}

.home-kicker-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(231, 223, 209, 0.95);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.62);
  color: rgba(46, 42, 38, 0.88);
  font-size: 0.92rem;
  line-height: 1.45;
  box-shadow: 0 8px 24px rgba(46, 42, 38, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.home-intro-grid,
.home-knowledge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1.5rem;
}

.home-intro-panel,
.home-route-band,
.home-path-card,
.home-knowledge-card {
  border: 1px solid rgba(231, 223, 209, 0.72);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 1px 4px rgba(46, 42, 38, 0.06);
}

.home-intro-panel,
.home-route-band,
.home-path-card,
.home-knowledge-card {
  padding: 1.6rem;
}

.home-intro-panel {
  display: grid;
  gap: 1.15rem;
}

.home-intro-grid .section-title,
.home-knowledge-grid .section-title {
  text-align: left;
}

.home-intro-copy {
  margin: 0;
  max-width: 38rem;
  color: var(--warmgray);
  line-height: 1.8;
}

.home-section-head {
  max-width: 48rem;
}

.home-section-head .section-title,
.home-section-head .section-copy {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.home-guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1.5rem;
  align-items: start;
}

.home-guide-panel {
  display: grid;
  gap: 1.15rem;
  padding: 1.7rem;
  border: 1px solid rgba(231, 223, 209, 0.72);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 1px 4px rgba(46, 42, 38, 0.06);
}

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

.home-mini-list article {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(231, 223, 209, 0.88);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.68);
}

.home-mini-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  line-height: 1.25;
}

.home-mini-list p {
  margin: 0;
  color: var(--warmgray);
  line-height: 1.7;
  font-size: 0.96rem;
}

.home-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.home-path-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 22rem;
  position: relative;
  overflow: hidden;
}

.home-path-card::after {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(200, 169, 107, 0.18), rgba(200, 169, 107, 0));
  pointer-events: none;
}

.home-path-card .card-kicker {
  margin-bottom: 0.25rem;
}

.home-path-card .card-title {
  font-size: clamp(1.35rem, 1.9vw, 1.85rem);
  line-height: 1.08;
}

.home-path-copy {
  margin: 0;
  color: var(--warmgray);
  line-height: 1.74;
}

.home-path-points {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-path-points li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(46, 42, 38, 0.92);
}

.home-path-points li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

.home-path-card .button-secondary,
.home-path-card .button-ghost {
  margin-top: auto;
  width: fit-content;
}

.home-route-band {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 1.4rem;
  align-items: start;
}

.home-route-band .section-title {
  text-align: left;
}

.home-route-panel {
  padding: 1.2rem;
  border-radius: 1.45rem;
  background: linear-gradient(180deg, rgba(30, 35, 45, 0.96), rgba(46, 42, 38, 0.92));
  color: var(--white);
  box-shadow: 0 18px 42px rgba(30, 35, 45, 0.16);
}

.home-route-panel .card-kicker {
  color: rgba(240, 221, 187, 0.88);
}

.home-route-panel .card-title,
.home-route-panel .card-copy {
  color: var(--white);
}

.home-route-panel .card-copy {
  margin-top: 0.7rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.8);
}

.home-route-grid {
  display: grid;
  gap: 0.8rem;
}

.home-route-item {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(231, 223, 209, 0.9);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.7);
}

.home-route-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.home-route-item p {
  margin: 0;
  color: var(--warmgray);
  line-height: 1.68;
  font-size: 0.94rem;
}

.home-knowledge-grid {
  margin-top: 2rem;
}

.home-knowledge-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1.5rem;
  align-items: start;
}

.home-knowledge-intro {
  display: grid;
  gap: 1.15rem;
}

.home-knowledge-stack {
  display: grid;
  gap: 1rem;
}

.home-knowledge-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.22rem;
  line-height: 1.18;
}

.home-knowledge-card p {
  margin: 0;
  color: var(--warmgray);
  line-height: 1.75;
}

.home-final-shell {
  max-width: 58rem;
  margin: 0 auto;
}

.home-final-shell .section-title,
.home-final-shell .section-copy {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .header-cta,
  .button-primary,
  .button-secondary,
  .button-ghost,
  .line-cta,
  .card-link,
  .sticky-mobile-cta.home-hero-glass-card {
    transition: none;
    animation: none;
  }
}

/* 2026 system palette overrides */
:root {
  --bg: #f6f7fb;
  --bg-soft: #eef3f6;
  --bg-deep: #0b1220;
  --bg-deep-2: #172235;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --surface-soft: rgba(255, 255, 255, 0.68);
  --text: #0f1720;
  --muted: #5a6672;
  --line: rgba(15, 23, 32, 0.08);
  --line-strong: rgba(15, 23, 32, 0.14);
  --brand: #7ee7c1;
  --brand-2: #a78bfa;
  --brand-deep: #13694d;
  --brand-violet-deep: #5f47b3;
  --glass-glow: rgba(126, 231, 193, 0.22);
  --glass-glow-2: rgba(167, 139, 250, 0.18);
  --panel-dark: linear-gradient(180deg, #0b1220 0%, #172235 100%);
  --accent-gradient: linear-gradient(135deg, #7ee7c1 0%, #a78bfa 100%);
  --ivory: var(--bg);
  --mist: var(--bg-soft);
  --sand: #dce7ea;
  --gold: var(--brand);
  --gold-deep: var(--brand-deep);
  --charcoal: var(--text);
  --warmgray: var(--muted);
  --softnight: var(--bg-deep);
  --white: #ffffff;
  --border: var(--line);
  --shadow-soft: 0 20px 60px rgba(9, 16, 21, 0.08);
  --shadow-button: 0 16px 40px rgba(9, 16, 21, 0.18);
  --shadow-card: 0 18px 42px rgba(9, 16, 21, 0.08);
}

body {
  background:
    radial-gradient(circle at top left, rgba(126, 231, 193, 0.24), transparent 28%),
    radial-gradient(circle at top right, rgba(167, 139, 250, 0.16), transparent 24%),
    linear-gradient(180deg, #f8fbfc 0%, #edf2f4 100%);
  color: var(--text);
}

::selection {
  background: var(--brand);
  color: var(--bg-deep);
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(246, 247, 251, 0.72);
  box-shadow: 0 8px 30px rgba(9, 16, 21, 0.04);
}

.brand span:last-child,
.dropdown-label,
.eyebrow,
.card-kicker,
.phase-microline,
.price-label,
.footer-title,
.shared-trust-row__title,
.section-footer-cta__eyebrow,
.article-next-step-block__eyebrow {
  color: var(--brand-deep);
}

.nav-link,
.nav-parent,
.dropdown a,
.breadcrumb,
.breadcrumb a,
.hero-subtitle,
.section-copy,
.card-copy,
.muted,
.footer-copy,
.footer-note,
.home-intro-copy,
.home-mini-list p,
.home-path-copy,
.home-route-item p,
.home-knowledge-card p,
.shared-trust-row__copy,
.section-footer-cta__copy,
.article-next-step-block__copy {
  color: var(--muted);
}

.nav-link,
.nav-parent {
  color: rgba(15, 23, 32, 0.68);
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-parent:hover,
.nav-item:focus-within .nav-parent,
.dropdown a:hover,
.breadcrumb span {
  color: var(--text);
}

.dropdown,
.mobile-nav {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.dropdown-group + .dropdown-group,
.mobile-nav,
.mobile-nav a,
.site-footer,

.mobile-nav-toggle {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 8px 22px rgba(9, 16, 21, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.header-cta,
.button-primary,
.line-cta {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--panel-dark);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(9, 16, 21, 0.2);
}

.header-cta:hover,
.button-primary:hover,
.line-cta:hover {
  background: linear-gradient(180deg, #111a2a 0%, #1b2940 100%);
  box-shadow: 0 22px 48px rgba(9, 16, 21, 0.22);
}

.button-secondary,
.button-ghost,
.card-link,
.sticky-mobile-cta a {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  box-shadow: 0 12px 30px rgba(9, 16, 21, 0.06);
}

.button-secondary:hover,
.button-ghost:hover,
.card-link:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(9, 16, 21, 0.08);
}

.button-ghost {
  color: var(--brand-violet-deep);
}

.page-hero,
.hero-section,
.backdrop-section,
.section-alt {
  background-color: transparent;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(246, 247, 251, 0.9) 0%, rgba(246, 247, 251, 0.64) 42%, rgba(246, 247, 251, 0.18) 100%),
    linear-gradient(to bottom, rgba(11, 18, 32, 0.04) 0%, rgba(11, 18, 32, 0.16) 100%);
}

.home-hero .hero-scrim {
  background:
    linear-gradient(90deg, rgba(246, 247, 251, 0.92) 0%, rgba(246, 247, 251, 0.62) 42%, rgba(246, 247, 251, 0.18) 100%),
    linear-gradient(to bottom, rgba(11, 18, 32, 0.02) 0%, rgba(11, 18, 32, 0.18) 100%);
}

.sleep-reset-hero .hero-scrim,
.easy-sleep-backdrop .section-scrim {
  background:
    linear-gradient(90deg, rgba(246, 247, 251, 0.9) 0%, rgba(246, 247, 251, 0.68) 38%, rgba(246, 247, 251, 0.24) 100%),
    linear-gradient(to bottom, rgba(11, 18, 32, 0.04) 0%, rgba(11, 18, 32, 0.18) 100%);
}

.home-hero .hero-subtitle,
.sleep-reset-hero .hero-subtitle,
.easy-sleep-backdrop .section-copy {
  color: rgba(15, 23, 32, 0.8);
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.03), rgba(167, 139, 250, 0.06));
}

.card,
.panel,
.funnel-card,
.feature-card,
.phase-card,
.product-card,
.article-card,
.citation-card,
.faq-card,
.home-intro-panel,
.home-route-band,
.home-path-card,
.home-knowledge-card,
.home-guide-panel,
.home-mini-list article,
.home-signal-panel,
.shared-trust-row,
.section-footer-cta,
.article-next-step-block,
.price-pair > div,
.price-single > div,
.home-route-item {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.article-card,
.product-card,
.shared-trust-row,
.section-footer-cta,
.article-next-step-block,
.home-signal-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at top right, var(--glass-glow), transparent 42%);
}

.article-card:hover,
.home-signal-card:hover,
.home-signal-card:focus-visible,
.home-path-card:hover,
.home-path-card:focus-within {
  box-shadow: 0 24px 56px rgba(9, 16, 21, 0.12);
}

.home-signal-card,
.home-kicker-chip,
.home-mini-list article,
.home-route-item {
  border-color: var(--line);
  background: var(--surface-soft);
  box-shadow: 0 12px 28px rgba(9, 16, 21, 0.05);
}

.home-signal-card {
  color: var(--text);
}

.home-signal-card:hover,
.home-signal-card:focus-visible {
  border-color: rgba(126, 231, 193, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at top right, var(--glass-glow), transparent 46%);
}

.home-signal-panel__eyebrow {
  color: var(--brand-violet-deep);
}

.home-signal-card span,
.home-path-points li,
.shared-cta-row__caption {
  color: rgba(15, 23, 32, 0.78);
}

.home-path-card::after {
  background: radial-gradient(circle, rgba(126, 231, 193, 0.22), rgba(167, 139, 250, 0.02) 65%, rgba(126, 231, 193, 0));
}

.home-path-points li::before {
  color: var(--brand-violet-deep);
}

.home-route-panel {
  background:
    radial-gradient(circle at top right, rgba(126, 231, 193, 0.16), transparent 30%),
    linear-gradient(180deg, #0b1220 0%, #172235 100%);
  color: var(--white);
  box-shadow: 0 24px 56px rgba(9, 16, 21, 0.18);
}

.home-route-panel .card-kicker {
  color: rgba(216, 247, 234, 0.84);
}

.home-route-panel .card-copy {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.32));
}

.sticky-mobile-cta {
  background: rgba(255, 255, 255, 0.54);
}:hover {
  box-shadow:
    0 22px 48px rgba(9, 16, 21, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}::before.is-user {
  background: var(--accent-gradient);
  color: var(--bg-deep);
},,,.is-assistantspan {
  background: rgba(90, 102, 114, 0.4);
}

/* Home layout refinement */
.home-section-head {
  max-width: 44rem;
}

.home-path-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.home-path-card {
  min-height: 19.5rem;
  padding: 1.7rem;
}

.home-path-card .button-primary,
.home-path-card .button-secondary,
.home-path-card .button-ghost {
  margin-top: auto;
  width: fit-content;
}

.home-route-band {
  padding: 1.6rem;
  gap: 1.15rem;
}

.home-route-panel {
  padding: 1.45rem;
}

.home-route-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.home-route-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 100%;
  padding: 1.1rem 1.1rem 1rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.home-route-item:hover,
.home-route-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(126, 231, 193, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at top right, var(--glass-glow), transparent 42%);
  box-shadow: 0 16px 36px rgba(9, 16, 21, 0.08);
}

.home-route-item span {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--brand-deep);
  letter-spacing: 0.02em;
}

.home-knowledge-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-knowledge-card {
  min-height: 100%;
  padding: 1.45rem;
}

.home-knowledge-card h3 {
  margin-bottom: 0.7rem;
}

.home-knowledge-trust {
  margin-top: 1.15rem;
}

.home-knowledge-trust .shared-trust-row {
  margin-top: 0;
}

.home-final-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.35rem;
  align-items: center;
  max-width: none;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-card) + 0.15rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at top right, var(--glass-glow-2), transparent 40%);
  box-shadow: var(--shadow-card);
}

.home-final-copy {
  max-width: 32rem;
}

.home-final-copy .section-title,
.home-final-copy .section-copy {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.home-final-actions .section-footer-cta {
  margin-top: 0;
  height: 100%;
}

.home-kicker-chip.is-active {
  border-color: rgba(126, 231, 193, 0.88);
  background: linear-gradient(135deg, rgba(126, 231, 193, 0.18), rgba(167, 139, 250, 0.16));
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(11, 18, 32, 0.12);
}

.home-hero-copy.is-contextual .hero-title {
  max-width: 11ch;
}

.home-signal-card.is-priority,
.home-path-card.is-priority,
.home-route-item.is-priority {
  border-color: rgba(126, 231, 193, 0.52);
  box-shadow: 0 22px 54px rgba(11, 18, 32, 0.14);
}

.home-signal-card.is-priority {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8)),
    radial-gradient(circle at top right, rgba(126, 231, 193, 0.22), transparent 52%);
}

.home-path-card.is-priority,
.home-route-item.is-priority {
  transform: translateY(-4px);
}

.home-signal-card.is-deemphasized,
.home-path-card.is-deemphasized,
.home-route-item.is-deemphasized {
  opacity: 0.88;
}

.is-pressed {
  transform: translateY(1px) scale(0.985) !important;
}

@keyframes homeHeroBackdropShift {
  from {
    opacity: 0;
    transform: scale(1.08);
  }

  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes premiumSlideReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stickyCtaGlow {
  0%,
  100% {
    box-shadow: 0 24px 54px rgba(11, 18, 32, 0.14);
  }

  50% {
    box-shadow: 0 28px 68px rgba(126, 231, 193, 0.22);
  }
}

body.is-motion-ready .home-hero .hero-backdrop {
  animation: homeHeroBackdropShift 1.45s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

body.is-motion-ready #homeHeroEyebrow,
body.is-motion-ready #homeHeroTitle,
body.is-motion-ready #homeHeroSubtitle,
body.is-motion-ready .home-hero .hero-actions,
body.is-motion-ready .home-signal-panel {
  opacity: 0;
  animation: premiumSlideReveal 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

body.is-motion-ready #homeHeroEyebrow {
  animation-delay: 0.12s;
}

body.is-motion-ready #homeHeroTitle {
  animation-delay: 0.22s;
}

body.is-motion-ready #homeHeroSubtitle {
  animation-delay: 0.34s;
}

body.is-motion-ready .home-hero .hero-actions {
  animation-delay: 0.48s;
}

body.is-motion-ready .home-signal-panel {
  animation-delay: 0.42s;
}

body.is-motion-ready .sticky-mobile-cta:not(.is-hidden) {
  animation: stickyCtaGlow 3.4s ease-in-out 0.8s infinite;
}

.is-engaged-cta {
  background: linear-gradient(135deg, rgba(126, 231, 193, 0.96), rgba(167, 139, 250, 0.88)) !important;
  color: #08111c !important;
  border-color: rgba(126, 231, 193, 0.62) !important;
  box-shadow: 0 20px 44px rgba(126, 231, 193, 0.24) !important;
}

body.is-home-cta-engaged .home-sticky-cta:not(.is-hidden) {
  box-shadow: 0 30px 72px rgba(126, 231, 193, 0.22);
}

@media (max-width: 1023px) {
  .home-path-grid,
  .home-route-grid,
  .home-knowledge-grid,
  .home-final-shell {
    grid-template-columns: 1fr;
  }

  .home-final-shell {
    gap: 1rem;
  }
}:focus {
  outline: 2px solid rgba(126, 231, 193, 0.26);
  border-color: rgba(126, 231, 193, 0.92);
}

/* 2026 visual system reset */
:root {
  --bg: #f6f7fb;
  --bg-soft: #eef4f6;
  --bg-deep: #0b1220;
  --bg-deep-2: #172235;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-soft: rgba(255, 255, 255, 0.68);
  --text: #0f1720;
  --muted: #5a6672;
  --line: rgba(15, 23, 32, 0.08);
  --line-strong: rgba(15, 23, 32, 0.14);
  --brand: #7ee7c1;
  --brand-2: #a78bfa;
  --brand-deep: #1f8a68;
  --brand-violet-deep: #5f47b3;
  --glass-glow: rgba(126, 231, 193, 0.24);
  --glass-glow-2: rgba(167, 139, 250, 0.18);
  --panel-dark: linear-gradient(180deg, #0b1220 0%, #172235 100%);
  --accent-gradient: linear-gradient(135deg, #7ee7c1 0%, #a78bfa 100%);
  --shadow-soft: 0 20px 60px rgba(9, 16, 21, 0.08);
  --shadow-button: 0 18px 42px rgba(9, 16, 21, 0.18);
  --shadow-card: 0 20px 56px rgba(9, 16, 21, 0.1);
  --radius-card: 2rem;
  --radius-panel: 1.5rem;
  --radius-pill: 999px;
  --container: 1280px;
  --charcoal: var(--text);
  --warmgray: var(--muted);
  --gold: var(--brand);
  --gold-deep: var(--brand-deep);
  --softnight: var(--bg-deep);
  --border: var(--line);
}

body {
  font-family: "Inter", "Sarabun", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(126, 231, 193, 0.2), transparent 26%),
    radial-gradient(circle at top right, rgba(167, 139, 250, 0.14), transparent 22%),
    linear-gradient(180deg, #f8fbfc 0%, #edf2f4 100%);
  color: var(--text);
}

::selection {
  background: rgba(126, 231, 193, 0.92);
  color: var(--bg-deep);
}

.container {
  width: min(var(--container), calc(100% - 2rem));
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(246, 247, 251, 0.72);
  box-shadow: 0 8px 30px rgba(9, 16, 21, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header-inner {
  min-height: 84px;
  gap: 1.5rem;
}

.brand {
  gap: 0.7rem;
  font-family: "Inter", "Sarabun", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: none;
}

.brand span:last-child {
  color: var(--brand-deep);
}

.desktop-nav {
  flex: 1;
  justify-content: center;
  gap: 2rem;
}

.nav-link,
.nav-parent {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(15, 23, 32, 0.62);
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-parent:hover,
.nav-item:focus-within .nav-parent {
  color: var(--text);
}

.dropdown {
  top: calc(100% + 0.9rem);
  min-width: 260px;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.dropdown-label,
.card-kicker,
.footer-title {
  color: var(--brand-deep);
}

.header-cta,
.button-primary,
.line-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.7rem;
  padding: 0 1.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--accent-gradient);
  color: var(--bg-deep);
  font-weight: 700;
  box-shadow: 0 18px 38px rgba(126, 231, 193, 0.24);
}

.header-cta:hover,
.button-primary:hover,
.line-cta:hover {
  background: linear-gradient(135deg, #8becc9 0%, #b09afc 100%);
  box-shadow: 0 22px 44px rgba(126, 231, 193, 0.3);
}

.button-secondary,
.button-ghost,
.card-link,
.sticky-mobile-cta a {
  min-height: 3.7rem;
  padding: 0 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(9, 16, 21, 0.06);
}

.button-secondary:hover,
.button-ghost:hover,
.card-link:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(9, 16, 21, 0.1);
}

.button-ghost {
  color: var(--brand-violet-deep);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  margin: 0 0 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(9, 16, 21, 0.06);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--brand-deep);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.page-title,
.hero-title,
.section-title,
.card-title,
.article-body h3 {
  font-family: "Inter", "Sarabun", system-ui, sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text);
  text-wrap: balance;
}

.hero-title {
  font-size: clamp(3.2rem, 6.6vw, 5.9rem);
  font-weight: 800;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 700;
}

.card-title {
  font-size: clamp(1.3rem, 1.7vw, 1.75rem);
  font-weight: 700;
}

.hero-subtitle,
.section-copy,
.card-copy,
.muted,
.footer-copy,
.footer-note {
  color: var(--muted);
  line-height: 1.8;
}

.card,
.panel,
.funnel-card,
.feature-card,
.phase-card,
.product-card,
.article-card,
.citation-card,
.faq-card,
.home-path-card,
.home-route-band,
.home-knowledge-card,
.home-route-item,
.section-footer-cta,
.shared-trust-row,
.article-next-step-block,
.price-pair > div,
.price-single > div {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74)),
    radial-gradient(circle at top right, var(--glass-glow), transparent 44%);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.section {
  padding: 7rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.03), rgba(167, 139, 250, 0.06));
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.34));
}

.home-hero {
  min-height: calc(100vh - 84px);
  padding: 3.8rem 0 4.8rem;
}

.home-hero .hero-backdrop {
  opacity: 0;
}

.home-hero .hero-scrim {
  background:
    radial-gradient(circle at top left, rgba(126, 231, 193, 0.22), transparent 26%),
    radial-gradient(circle at 76% 18%, rgba(167, 139, 250, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(248, 251, 252, 0.96) 0%, rgba(238, 244, 246, 0.94) 100%);
}

.home-hero-shell {
  grid-template-columns: minmax(0, 1.02fr) minmax(22rem, 0.98fr);
  gap: 2.8rem;
  align-items: center;
}

.home-hero-panel {
  max-width: 40rem;
  padding: 0;
}

.home-hero .eyebrow,
.home-hero .hero-title,
.home-hero .hero-subtitle {
  text-align: left;
}

.home-hero .hero-title {
  max-width: 7ch;
  background: linear-gradient(135deg, #0b1220 0%, #0f3a48 44%, #1f8a68 82%, #7ee7c1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.04;
}

.home-hero .hero-subtitle {
  max-width: 38rem;
  margin-top: 1.25rem;
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
  color: rgba(15, 23, 32, 0.82);
}

.home-hero .hero-actions {
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 2.2rem;
}

.home-hero-note {
  display: inline-flex;
  align-items: center;
  min-height: 3.2rem;
  margin: 1.35rem 0 0;
  padding: 0.85rem 1.1rem;
  border-radius: 1.35rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(15, 23, 32, 0.72);
  line-height: 1.65;
  box-shadow: 0 14px 30px rgba(9, 16, 21, 0.06);
}

.home-hero-visual {
  position: relative;
  min-height: 42rem;
  border-radius: 3rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.06), rgba(11, 18, 32, 0.58)),
    url("/site-assets/bedroom.jpg") center / cover no-repeat;
  box-shadow: 0 32px 96px rgba(9, 16, 21, 0.2);
}

.home-hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0), rgba(11, 18, 32, 0.78));
}

.home-hero-glass-card {
  position: absolute;
  z-index: 2;
  max-width: 18rem;
  padding: 1.55rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(9, 16, 21, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  will-change: transform;
  animation: homeHeroGlassFloat 7.2s ease-in-out infinite;
}

.home-hero-glass-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.home-hero-glass-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

.home-hero-glass-card--top {
  top: 2rem;
  right: 2rem;
  animation-duration: 6.6s;
}

.home-hero-glass-card--bottom {
  left: 2rem;
  bottom: 10rem;
  max-width: 20rem;
  background: rgba(24, 30, 42, 0.46);
  animation-name: homeHeroGlassFloatAlt;
  animation-duration: 7.8s;
  animation-delay: 1.1s;
}

@keyframes homeHeroGlassFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes homeHeroGlassFloatAlt {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

.home-hero-visual-copy {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  z-index: 2;
  color: #ffffff;
}

.home-hero-visual-copy h2 {
  margin: 0 0 0.75rem;
  font-family: "Inter", "Sarabun", system-ui, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.home-hero-visual-copy p {
  max-width: 28rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.72;
}

.home-section-head {
  max-width: 52rem;
}

.home-section-head .section-title,
.home-section-head .section-copy {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.home-path-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.2rem;
}

.home-path-card {
  position: relative;
  overflow: hidden;
  min-height: 20rem;
  padding: 1.8rem;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.home-path-card::after {
  content: "";
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(126, 231, 193, 0.22), rgba(167, 139, 250, 0.04) 70%, rgba(126, 231, 193, 0));
  pointer-events: none;
}

.home-path-card:hover,
.home-path-card:focus-within,
.home-route-item:hover,
.home-route-item:focus-visible,
.home-knowledge-card:hover,
.home-knowledge-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(9, 16, 21, 0.12);
}

.home-path-copy,
.home-path-points li,
.home-route-item p,
.home-knowledge-card p {
  color: rgba(15, 23, 32, 0.76);
}

.home-path-points li::before {
  color: var(--brand-violet-deep);
}

.home-route-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.2rem;
  padding: 1.55rem;
}

.home-route-panel {
  padding: 1.6rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(126, 231, 193, 0.18), transparent 28%),
    linear-gradient(180deg, #0b1220 0%, #172235 100%);
  color: #ffffff;
  box-shadow: 0 28px 70px rgba(9, 16, 21, 0.18);
}

.home-route-panel .card-kicker {
  color: rgba(216, 247, 234, 0.88);
}

.home-route-panel .section-title,
.home-route-panel .card-copy {
  color: #ffffff;
  text-align: left;
}

.home-route-panel .section-title {
  max-width: 11ch;
  font-size: clamp(2.3rem, 3.8vw, 4.2rem);
  line-height: 1.04;
}

.home-route-panel .card-copy {
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.8);
}

.home-route-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.home-route-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 1.15rem;
}

.home-route-item span {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.home-knowledge-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.1rem;
}

.home-knowledge-card {
  min-height: 100%;
  padding: 1.5rem;
}

.home-final-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.25rem;
  align-items: center;
  max-width: none;
  padding: 1.8rem;
  border-radius: 2.2rem;
}

.home-final-copy .section-title,
.home-final-copy .section-copy {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.sticky-mobile-cta {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(9, 16, 21, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

@media (max-width: 1100px) {
  .home-hero-shell,
  .home-route-band,
  .home-final-shell {
    grid-template-columns: 1fr;
  }

  .home-hero-visual {
    min-height: 34rem;
  }
}

@media (max-width: 920px) {
  .home-path-grid,
  .home-knowledge-grid,
  .home-route-grid {
    grid-template-columns: 1fr;
  }

  .desktop-nav {
    gap: 1.2rem;
  }
}

@media (max-width: 780px) {
  .site-header .header-cta {
    display: none;
  }

  .home-hero {
    padding: 2.6rem 0 4rem;
  }

  .home-hero .hero-title {
    max-width: 7ch;
    font-size: clamp(2.7rem, 13.5vw, 4.2rem);
    line-height: 1.02;
  }

  .home-hero-note {
    display: none;
  }

  .home-hero-visual {
    min-height: 28rem;
    border-radius: 2.3rem;
  }

  .home-hero-glass-card {
    max-width: 14rem;
    padding: 1.1rem;
    border-radius: 1.35rem;
  }

  .home-hero-glass-card--top {
    top: 1rem;
    right: 1rem;
  }

  .home-hero-glass-card--bottom {
    left: 1rem;
    bottom: 8.5rem;
  }

  .home-hero-visual-copy {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
  }

  .home-route-band,
  .home-final-shell,
  .home-path-card,
  .home-knowledge-card {
    padding: 1.3rem;
  }

  .home-route-panel .section-title {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3.3rem);
  }
}
