  .pw-pureway-section,
  .pw-pureway-section *,
  .pw-pureway-section *::before,
  .pw-pureway-section *::after {
    box-sizing: border-box;
  }

  .pw-pureway-section {
    --pw-bg: #FDFBF8;
    --pw-ink: #0E0E10;
    --pw-ink-soft: #5B5A57;
    --pw-ink-mute: #9A9893;
    --pw-line: rgba(15, 15, 18, 0.07);
    --pw-peach-2: #FFD4B0;
    --pw-peach-3: #F5A26A;
    --pw-peach-glow: rgba(245, 162, 106, 0.18);
    --pw-progress: 0;

    position: relative;
    width: 100%;
    padding: 140px 24px;
    background: var(--pw-bg);
    color: var(--pw-ink);
    overflow: hidden;
    isolation: isolate;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .pw-pureway-section::before,
  .pw-pureway-section::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(80px);
  }

  .pw-pureway-section::before {
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 220, 190, 0.55) 0%, rgba(255, 220, 190, 0) 70%);
  }

  .pw-pureway-section::after {
    bottom: -300px;
    left: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 235, 215, 0.45) 0%, rgba(255, 235, 215, 0) 70%);
  }

  .pw-container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
  }

  .pw-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 96px;
  }

  .pw-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--pw-line);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pw-ink-soft);
    margin-bottom: 28px;
  }

  .pw-kicker::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pw-peach-3);
    box-shadow: 0 0 12px var(--pw-peach-3);
  }

  .pw-title {
    font-size: clamp(34px, 5vw, 56px) !important;
    font-weight: 500;
    line-height: 1.08;
text-align: center;
    letter-spacing: -0.025em;
    margin: 0 0 24px;
    color: var(--pw-ink);
  }

  .pw-subtitle {
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.55;
    color: var(--pw-ink-soft);
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.005em;
  }

  .pw-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
  }

  .pw-stage {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(255,247,238,0.55) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 30px 80px -30px rgba(245, 162, 106, 0.18),
      0 10px 40px -20px rgba(15, 15, 18, 0.08);
    overflow: hidden;
    --ring-scale: calc(1 + var(--pw-progress) * 0.12);
  }

  .pw-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, var(--pw-peach-glow) 0%, transparent 55%);
    opacity: calc(0.5 + var(--pw-progress) * 0.5);
    transition: opacity 0.6s ease;
  }

  .pw-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(15,15,18,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(15,15,18,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 70%);
    opacity: 0.6;
  }

  .pw-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid;
    transform: translate(-50%, -50%) scale(var(--ring-scale));
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
    pointer-events: none;
  }

  .pw-ring-1 {
    width: 56%;
    height: 56%;
    border-color: rgba(245, 162, 106, 0.25);
    opacity: calc(0.7 + var(--pw-progress) * 0.3);
  }

  .pw-ring-2 {
    width: 74%;
    height: 74%;
    border-color: rgba(245, 162, 106, 0.16);
    border-style: dashed;
    opacity: calc(0.5 + var(--pw-progress) * 0.4);
    animation: pw-rotate 60s linear infinite;
  }

  .pw-ring-3 {
    width: 92%;
    height: 92%;
    border-color: rgba(245, 162, 106, 0.10);
    opacity: calc(0.4 + var(--pw-progress) * 0.4);
  }

  @keyframes pw-rotate {
    to {
      transform: translate(-50%, -50%) scale(var(--ring-scale)) rotate(360deg);
    }
  }

  .pw-capsule-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 78%;
    max-width: 440px;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
  }

  .pw-capsule-img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    z-index: 2;
    transform: rotate(-14deg) translateZ(0);
    transform-origin: center;
    filter:
      drop-shadow(0 28px 32px rgba(120, 70, 35, 0.24))
      drop-shadow(0 10px 12px rgba(30, 18, 8, 0.14))
      drop-shadow(0 2px 3px rgba(30, 18, 8, 0.10));
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
  }

  .pw-stage:hover .pw-capsule-img {
    transform: rotate(-12deg) scale(1.035) translateZ(0);
    filter:
      drop-shadow(0 34px 38px rgba(120, 70, 35, 0.28))
      drop-shadow(0 12px 14px rgba(30, 18, 8, 0.15))
      drop-shadow(0 2px 3px rgba(30, 18, 8, 0.10));
  }

  .pw-capsule-ground {
    position: absolute;
    left: 12%;
    right: 12%;
    top: 66%;
    height: 22%;
    background: radial-gradient(ellipse at center, rgba(90, 48, 22, 0.24) 0%, rgba(90, 48, 22, 0.12) 36%, rgba(90, 48, 22, 0) 74%);
    filter: blur(12px);
    transform: rotate(-6deg);
    z-index: 1;
  }

  .pw-capsule-wrap::before {
    content: "";
    position: absolute;
    inset: 10% 6% 2% 6%;
    background: radial-gradient(ellipse at center, rgba(245, 162, 106, 0.18) 0%, rgba(245, 162, 106, 0.08) 38%, transparent 72%);
    filter: blur(26px);
    z-index: 0;
    transform: rotate(-14deg);
  }

  .pw-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .pw-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--pw-peach-3);
    opacity: 0.35;
    box-shadow: 0 0 8px rgba(245, 162, 106, 0.6);
    animation: pw-float 8s ease-in-out infinite;
  }

  .pw-particle:nth-child(1) { top: 18%; left: 22%; width: 3px; height: 3px; animation-delay: 0s; animation-duration: 7s; }
  .pw-particle:nth-child(2) { top: 28%; right: 18%; width: 5px; height: 5px; animation-delay: 1.2s; animation-duration: 9s; }
  .pw-particle:nth-child(3) { bottom: 22%; left: 28%; width: 3px; height: 3px; animation-delay: 2.4s; animation-duration: 8s; }
  .pw-particle:nth-child(4) { bottom: 30%; right: 24%; width: 4px; height: 4px; animation-delay: 0.6s; animation-duration: 10s; }
  .pw-particle:nth-child(5) { top: 50%; left: 14%; width: 2px; height: 2px; opacity: 0.25; animation-delay: 1.8s; animation-duration: 7.5s; }
  .pw-particle:nth-child(6) { top: 60%; right: 12%; width: 3px; height: 3px; animation-delay: 3s; animation-duration: 8.5s; }
  .pw-particle:nth-child(7) { top: 14%; left: 50%; width: 2px; height: 2px; opacity: 0.3; animation-delay: 2s; animation-duration: 6.5s; }
  .pw-particle:nth-child(8) { bottom: 14%; left: 52%; width: 3px; height: 3px; animation-delay: 4s; animation-duration: 9.5s; }

  @keyframes pw-float {
    0%, 100% {
      transform: translate(0, 0);
      opacity: 0.2;
    }
    50% {
      transform: translate(8px, -12px);
      opacity: 0.55;
    }
  }

  .pw-label {
    position: absolute;
    padding: 9px 16px 9px 26px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.8) inset,
      0 8px 24px -8px rgba(15, 15, 18, 0.12),
      0 2px 6px rgba(15, 15, 18, 0.04);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: -0.005em;
    color: var(--pw-ink);
    white-space: nowrap;
    z-index: 3;
    animation: pw-label-float 6s ease-in-out infinite;
  }

  .pw-label::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pw-peach-3);
    box-shadow: 0 0 10px var(--pw-peach-3);
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
  }

  .pw-label-1 { top: 16%; right: 8%; animation-delay: 0s; }
  .pw-label-2 { bottom: 18%; left: 6%; animation-delay: 2s; }
  .pw-label-3 { top: 58%; right: 4%; animation-delay: 4s; }

  @keyframes pw-label-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  .pw-steps {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .pw-step {
    position: relative;
    padding: 28px 28px 28px 32px;
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid transparent;
  }

  .pw-step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 32px;
    bottom: 32px;
    width: 2px;
    background: var(--pw-line);
    border-radius: 2px;
    transition: background 0.6s ease;
  }

  .pw-step-head {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 10px;
  }

  .pw-step-num {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--pw-ink-mute);
    font-variant-numeric: tabular-nums;
    transition: color 0.6s ease;
  }

  .pw-step-title {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--pw-ink);
  }

  .pw-step-text {
    font-size: 15.5px;
    line-height: 1.55;
    margin: 0;
    color: var(--pw-ink-soft);
    max-width: 460px;
    letter-spacing: -0.005em;
    transition: opacity 0.6s ease;
  }

  .pw-step.pw-is-active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 245, 235, 0.75) 100%);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.8) inset,
      0 20px 50px -20px rgba(245, 162, 106, 0.18),
      0 10px 30px -15px rgba(15, 15, 18, 0.08);
  }

  .pw-step.pw-is-active::before {
    background: linear-gradient(180deg, var(--pw-peach-3) 0%, var(--pw-peach-2) 100%);
    box-shadow: 0 0 12px var(--pw-peach-glow);
  }

  .pw-step.pw-is-active .pw-step-num {
    color: var(--pw-peach-3);
  }

  .pw-step:not(.pw-is-active) .pw-step-text {
    opacity: 0.7;
  }

  .pw-safety-note {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
  }

  .pw-safety-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.8) inset,
      0 8px 24px -14px rgba(15, 15, 18, 0.12);
    font-size: 12.5px;
    line-height: 1;
    color: rgba(14, 14, 16, 0.68);
    white-space: nowrap;
  }

  .pw-safety-pill::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--pw-peach-3);
    box-shadow: 0 0 10px rgba(245, 162, 106, 0.45);
    flex: 0 0 auto;
  }

  .pw-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding-top: 64px;
    border-top: 1px solid var(--pw-line);
  }

  .pw-metric {
    position: relative;
    padding: 38px 28px;
    min-height: 190px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 252, 248, 0.5) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.8) inset,
      0 10px 40px -20px rgba(15, 15, 18, 0.06);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s ease;
  }

  .pw-metric:hover {
    transform: translateY(-3px);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.8) inset,
      0 24px 60px -24px rgba(245, 162, 106, 0.20);
  }

  .pw-metric-num {
    font-size: clamp(44px, 4vw, 62px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(135deg, var(--pw-ink) 0%, #2A2926 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .pw-metric-num-small {
    font-size: clamp(34px, 3.2vw, 48px);
    letter-spacing: -0.035em;
  }

  .pw-metric-label {
    font-size: 14px;
    line-height: 1.42;
    color: var(--pw-ink-soft);
    letter-spacing: -0.005em;
    max-width: 230px;
  }

  .pw-metric-tick {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pw-peach-3);
    box-shadow: 0 0 0 4px rgba(245, 162, 106, 0.12);
    opacity: 0.85;
  }

  .pw-study-note {
    grid-column: 1 / -1;
    margin-top: 10px;
    padding: 24px 28px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,255,255,0.58) 0%, rgba(255,250,245,0.42) 100%);
    border: 1px solid rgba(255,255,255,0.78);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.75) inset,
      0 12px 34px -24px rgba(15,15,18,0.12);
  }

  .pw-study-title {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(14, 14, 16, 0.62);
  }

  .pw-study-text {
    margin: 0;
    max-width: 980px;
    font-size: 12.5px;
    line-height: 1.65;
    color: rgba(14, 14, 16, 0.52);
  }

  .pw-study-text sup {
    font-size: 9px;
    line-height: 0;
    color: var(--pw-peach-3);
    font-weight: 600;
  }

  .pw-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .pw-reveal.pw-in {
    opacity: 1;
    transform: translateY(0);
  }

  .pw-reveal[data-delay="1"] { transition-delay: 0.1s; }
  .pw-reveal[data-delay="2"] { transition-delay: 0.2s; }
  .pw-reveal[data-delay="3"] { transition-delay: 0.3s; }

  @media (max-width: 1100px) {
    .pw-metrics {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 980px) {
    .pw-pureway-section {
      padding: 100px 20px;
    }
.pw-step-title {
font-size: 21px !important;
line-height: 1;
}

    .pw-grid {
      grid-template-columns: 1fr;
      gap: 56px;
      margin-bottom: 80px;
    }

    .pw-header {
      margin-bottom: 64px;
    }

    .pw-stage {
      max-width: 480px;
    }
  }

  @media (max-width: 640px) {
    .pw-pureway-section {
      padding: 80px 18px;
    }

    .pw-header {
      margin-bottom: 48px;
    }

    .pw-title {
      font-size: 30px;
    }

    .pw-subtitle {
      font-size: 15.5px;
    }

    .pw-stage {
      border-radius: 24px;
    }

    .pw-capsule-wrap {
      width: 84%;
    }

    .pw-label {
      font-size: 11.5px;
      padding: 7px 12px 7px 22px;
    }

    .pw-label::before {
      left: 8px;
      width: 5px;
      height: 5px;
    }

    .pw-label-1 { top: 10%; right: 4%; }
    .pw-label-2 { bottom: 12%; left: 4%; }
    .pw-label-3 { top: 60%; right: 2%; }

    .pw-step {
      padding: 22px 20px 22px 24px;
    }

    .pw-step-title {
      font-size: 19px;
    }

    .pw-step-text {
      font-size: 14.5px;
    }

    .pw-safety-note {
      gap: 8px;
      margin-top: 20px;
    }

    .pw-safety-pill {
      font-size: 11.5px;
      padding: 8px 12px;
    }

    .pw-metrics {
      grid-template-columns: 1fr;
      gap: 14px;
      padding-top: 48px;
    }

    .pw-metric {
      padding: 32px 26px;
      min-height: auto;
    }

    .pw-metric-num {
      font-size: 48px;
    }

    .pw-metric-num-small {
      font-size: 38px;
    }

    .pw-study-note {
      padding: 20px 22px;
    }

    .pw-study-text {
      font-size: 11.8px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pw-pureway-section *,
    .pw-pureway-section *::before,
    .pw-pureway-section *::after {
      animation-duration: 0.001s !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001s !important;
    }
  }
