:root {
  --dyw-navy: #17357d;
  --dyw-ink: #13244c;
  --dyw-cream: #ffffff;
  --dyw-paper: #ffffff;
  --dyw-accent: #a8d9ff;
  --dyw-accent-soft: #dcefff;
  --dyw-radius: 34px;
}

body.fdtc-dyw-page {
  background: var(--dyw-cream);
  color: var(--dyw-ink);
  overflow-x: hidden;
}

.fdtc-dyw-page #nm-page-wrap,
.fdtc-dyw-page .nm-page-wrap {
  background: var(--dyw-cream);
}

.fdtc-dyw-page #nm-header {
  background: var(--dyw-cream);
}

.fdtc-dyw-page #nm-header-inner {
  max-width: 1480px;
}

.dyw,
.dyw * {
  box-sizing: border-box;
}

.dyw {
  overflow: clip;
  background: var(--dyw-cream);
  color: var(--dyw-ink);
  font-family: inherit;
}

.dyw[data-palette="berry"] { --dyw-accent: #f3a6bd; --dyw-accent-soft: #fbe0e8; }
.dyw[data-palette="citrus"] { --dyw-accent: #ffd26f; --dyw-accent-soft: #fff0be; }
.dyw[data-palette="mint"] { --dyw-accent: #a9dfc1; --dyw-accent-soft: #dbf1e4; }

.dyw-shell {
  width: min(1360px, calc(100% - 64px));
  margin-inline: auto;
}

.dyw h1,
.dyw h2,
.dyw h3,
.dyw p {
  margin-top: 0;
}

.dyw h1,
.dyw h2 {
  color: var(--dyw-navy);
  font-weight: 700;
  letter-spacing: -0.055em;
}

.dyw-kicker {
  margin-bottom: 18px;
  color: var(--dyw-navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dyw-hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: min(820px, calc(100vh - 80px));
  margin: 0 20px;
  padding: clamp(54px, 7vw, 106px) clamp(30px, 6vw, 90px) 70px;
  overflow: hidden;
  border-radius: var(--dyw-radius);
  background: var(--dyw-accent-soft);
  isolation: isolate;
  transition: background-color 450ms ease;
}

.dyw-hero::before,
.dyw-hero::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  filter: blur(1px);
}

.dyw-hero::before {
  width: min(48vw, 690px);
  aspect-ratio: 1;
  right: -5%;
  top: -28%;
  background: rgba(255, 255, 255, 0.58);
}

.dyw-hero::after {
  width: 290px;
  height: 290px;
  left: 38%;
  bottom: -160px;
  background: var(--dyw-accent);
  opacity: 0.72;
  transition: background-color 450ms ease;
}

.dyw-hero__wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.22;
  background-image: radial-gradient(var(--dyw-navy) 0.75px, transparent 0.75px);
  background-size: 16px 16px;
  mask-image: linear-gradient(90deg, #000, transparent 64%);
}

.dyw-hero__copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 575px;
  padding-bottom: 40px;
}

.dyw-hero h1 {
  margin-bottom: 26px;
  font-size: clamp(76px, 8.3vw, 138px);
  line-height: 0.78;
}

.dyw-hero h1 em,
.dyw-closing h2 em {
  color: var(--dyw-navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.075em;
}

.dyw-hero__intro {
  max-width: 500px;
  margin-bottom: 34px;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
}

.dyw-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.dyw-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 190px;
  padding: 17px 22px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.dyw-button:hover {
  transform: translateY(-3px);
}

.dyw-button--dark {
  background: var(--dyw-navy);
  color: #fff;
}

.dyw-button--dark:hover { color: #fff; }

.dyw-button--light {
  background: #fff;
  color: var(--dyw-navy);
}

.dyw-text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--dyw-navy);
  font-size: 14px;
  font-weight: 700;
}

.dyw-hero__stage {
  position: relative;
  min-height: 620px;
}

.dyw-hero-product {
  position: absolute;
  display: block;
  width: clamp(225px, 23vw, 380px);
  aspect-ratio: 0.78;
  overflow: hidden;
  border: 10px solid rgba(255,255,255,.72);
  border-radius: 190px 190px 38px 38px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(23, 53, 125, 0.17);
  transition: transform 400ms cubic-bezier(.2,.8,.2,1);
}

.dyw-hero-product:hover { transform: translateY(-12px) rotate(0deg); }

.dyw-hero-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dyw-hero-product--1 {
  z-index: 3;
  left: 25%;
  top: 7%;
  transform: rotate(-4deg);
}

.dyw-hero-product--2 {
  z-index: 2;
  right: -3%;
  bottom: 3%;
  transform: rotate(8deg) scale(.86);
}

.dyw-hero-product--3 {
  z-index: 1;
  left: -2%;
  bottom: -4%;
  transform: rotate(-11deg) scale(.72);
}

.dyw-sticker {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  padding: 14px;
  border-radius: 50%;
  background: var(--dyw-navy);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.05;
  text-align: center;
  transform: rotate(9deg);
}

.dyw-sticker--one { top: 7%; right: 4%; }
.dyw-sticker--two { bottom: 5%; left: 11%; background: #ff765f; transform: rotate(-11deg); }

.dyw-scroll {
  position: absolute;
  left: clamp(30px, 6vw, 90px);
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dyw-navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.dyw-scroll i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--dyw-navy);
  border-radius: 50%;
  font-style: normal;
}

.dyw-intro {
  padding: clamp(100px, 11vw, 180px) 0 clamp(85px, 9vw, 140px);
  text-align: center;
}

.dyw-intro h2 {
  max-width: 850px;
  margin: 0 auto 30px;
  font-size: clamp(52px, 6vw, 92px);
  line-height: .96;
}

.dyw-intro > p:not(.dyw-kicker) {
  max-width: 640px;
  margin: 0 auto 46px;
  font-size: 18px;
  line-height: 1.6;
}

.dyw-palettes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.dyw-palettes button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(23,53,125,.2);
  border-radius: 100px;
  background: transparent;
  color: var(--dyw-ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
}

.dyw-palettes button i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--swatch);
}

.dyw-palettes button.is-active {
  border-color: var(--dyw-navy);
  background: var(--dyw-navy);
  color: #fff;
}

.dyw-chapter-nav {
  position: sticky;
  z-index: 30;
  top: 0;
  border-block: 1px solid rgba(23,53,125,.14);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
}

.admin-bar .dyw-chapter-nav { top: 32px; }

.dyw-chapter-nav .dyw-shell {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-block: 13px;
  scrollbar-width: none;
}

.dyw-chapter-nav span {
  margin-right: auto;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.dyw-chapter-nav a {
  flex: 0 0 auto;
  padding: 9px 15px;
  border-radius: 100px;
  color: var(--dyw-navy);
  font-size: 12px;
  font-weight: 700;
}

.dyw-chapter-nav a:hover { background: #fff; }

.dyw-chapter {
  scroll-margin-top: 60px;
  padding: clamp(80px, 9vw, 145px) 0;
}

.dyw-chapter--peach { background: #ffe3d8; }
.dyw-chapter--lilac { background: #e9e2fa; }
.dyw-chapter--mint { background: #dcefe5; }

.dyw-chapter__header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 50px;
}

.dyw-chapter__header h2 {
  margin-bottom: 0;
  font-size: clamp(52px, 6vw, 88px);
  line-height: .94;
}

.dyw-chapter__header > p {
  max-width: 490px;
  margin-bottom: 7px;
  font-size: 17px;
  line-height: 1.6;
}

.dyw-carousel-wrap { position: relative; }

.dyw-carousel {
  display: grid;
  grid-auto-columns: calc((100% - 66px) / 4);
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 2px 24px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.dyw-carousel::-webkit-scrollbar { display: none; }

.dyw-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--dyw-paper);
  scroll-snap-align: start;
  transition: transform 230ms ease, box-shadow 230ms ease;
}

.dyw-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(29,48,91,.12);
}

.dyw-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: #fff;
}

.dyw-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.8,.2,1);
}

.dyw-card:hover .dyw-card__image img { transform: scale(1.045); }

.dyw-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 8px 11px;
  border-radius: 100px;
  background: var(--dyw-navy);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.dyw-card__body { padding: 20px 19px 18px; }

.dyw-card__meta {
  margin-bottom: 8px;
  color: #7180a3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.dyw-card h3 {
  min-height: 44px;
  margin-bottom: 20px;
  display: -webkit-box;
  overflow: hidden;
  color: var(--dyw-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.dyw-card h3 a { color: inherit; }

.dyw-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dyw-price {
  color: var(--dyw-navy);
  font-size: 15px;
  font-weight: 700;
}

.dyw-card__shop {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dyw-navy);
  color: #fff;
  font-size: 16px;
}

.dyw-card__shop:hover { color: #fff; }

.dyw-arrow {
  position: absolute;
  z-index: 4;
  top: 40%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--dyw-navy);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(23,53,125,.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(.86);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.dyw-carousel-wrap:hover .dyw-arrow,
.dyw-carousel-wrap:focus-within .dyw-arrow {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.dyw-arrow--prev { left: -23px; }
.dyw-arrow--next { right: -23px; }

.dyw-values {
  padding: clamp(100px, 11vw, 170px) 0;
}

.dyw-values__intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 58px;
}

.dyw-values__intro h2 {
  margin-bottom: 0;
  font-size: clamp(50px, 5.5vw, 84px);
  line-height: .96;
}

.dyw-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.dyw-values__grid article {
  position: relative;
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(23,53,125,.14);
  border-radius: 26px;
  background: #fff;
}

.dyw-values__grid article > span {
  font-size: 11px;
  font-weight: 700;
}

.dyw-values__grid i {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 42px 0 32px;
  border-radius: 50%;
  background: var(--dyw-accent-soft);
  color: var(--dyw-navy);
  font-size: 36px;
  font-style: normal;
  transition: background-color 450ms ease;
}

.dyw-values__grid h3 {
  margin-bottom: 9px;
  color: var(--dyw-navy);
  font-size: 24px;
}

.dyw-values__grid p { margin-bottom: 0; line-height: 1.6; }

.dyw-closing {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 690px;
  padding: 100px 24px;
  overflow: hidden;
  background: var(--dyw-navy);
  color: #fff;
  text-align: center;
}

.dyw-closing .dyw-kicker { color: #fff; }

.dyw-closing h2 {
  position: relative;
  margin-bottom: 44px;
  color: #fff;
  font-size: clamp(62px, 8vw, 116px);
  line-height: .9;
}

.dyw-closing h2 em { color: var(--dyw-accent); transition: color 450ms ease; }

.dyw-closing__orb {
  position: absolute;
  width: min(640px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--dyw-accent);
  opacity: .15;
  filter: blur(4px);
  transition: background-color 450ms ease;
}

.dyw-closing > *:not(.dyw-closing__orb) { z-index: 1; }

@media (max-width: 1100px) {
  .dyw-hero { grid-template-columns: 1fr 1fr; min-height: 710px; }
  .dyw-hero h1 { font-size: clamp(68px, 9vw, 100px); }
  .dyw-hero__stage { min-height: 540px; }
  .dyw-carousel { grid-auto-columns: calc((100% - 44px) / 3); }
}

@media (max-width: 820px) {
  .dyw { width: 100vw; max-width: 100vw; }
  .dyw-shell { width: min(100% - 36px, 680px); }
  .dyw-hero {
    grid-template-columns: minmax(0, 1fr);
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    min-height: auto;
    margin: 0 10px;
    padding: 70px 24px 40px;
    border-radius: 24px;
  }
  .dyw-hero__copy { text-align: center; margin-inline: auto; padding-bottom: 10px; }
  .dyw-hero h1 { font-size: clamp(75px, 19vw, 118px); }
  .dyw-actions { justify-content: center; }
  .dyw-hero__stage { min-height: 560px; }
  .dyw-hero-product { width: min(56vw, 340px); }
  .dyw-hero-product--1 { left: 24%; }
  .dyw-hero-product--2 { right: 1%; }
  .dyw-hero-product--3 { left: -2%; }
  .dyw-scroll { display: none; }
  .dyw-chapter-nav span { display: none; }
  .dyw-chapter__header { grid-template-columns: 1fr; gap: 20px; }
  .dyw-carousel { grid-auto-columns: calc((100% - 22px) / 2); }
  .dyw-values__grid { grid-template-columns: 1fr; }
  .dyw-values__grid article { min-height: 260px; }
}

@media (max-width: 520px) {
  .admin-bar .dyw-chapter-nav { top: 0; }
  .dyw-shell { width: calc(100% - 28px); }
  .dyw-hero { padding: 58px 18px 30px; }
  .dyw-hero h1 { font-size: clamp(58px, 16vw, 68px); }
  .dyw-hero__copy { width: 100%; min-width: 0; }
  .dyw-hero__intro { width: 300px !important; max-width: 100% !important; margin-inline: auto; font-size: 16px; white-space: normal !important; overflow-wrap: anywhere; }
  .dyw-actions { flex-direction: column; gap: 17px; }
  .dyw-button--dark { min-width: 210px; }
  .dyw-hero__stage { min-height: 430px; }
  .dyw-hero-product { width: min(63vw, 285px); border-width: 7px; }
  .dyw-hero-product--1 { left: 18%; }
  .dyw-sticker { width: 80px; height: 80px; font-size: 15px; }
  .dyw-sticker--one { right: -4%; }
  .dyw-sticker--two { left: 0; }
  .dyw-intro h2,
  .dyw-chapter__header h2 { font-size: 47px; }
  .dyw-intro > p:not(.dyw-kicker),
  .dyw-chapter__header > p { font-size: 15px; }
  .dyw-palettes { justify-content: flex-start; }
  .dyw-palettes button { width: calc(50% - 5px); }
  .dyw-chapter-nav .dyw-shell { width: 100%; padding-inline: 14px; }
  .dyw-carousel { grid-auto-columns: 82%; gap: 12px; }
  .dyw-arrow { display: none; }
  .dyw-values__intro { display: block; }
  .dyw-values__grid i { margin-block: 30px 24px; }
  .dyw-closing { min-height: 580px; }
}

@media (prefers-reduced-motion: reduce) {
  .dyw *, .dyw *::before, .dyw *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
