.dew-wrapper {
    --dew-p: #8b5cf6;

    width: 100%;
    padding: 1rem 0;
  }

  .dew-card {
    background: var(--bg-surface);
    width: calc(100% - 24px);
    max-width: 900px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    color: var(--text-main);
  }

  @media (min-width: 768px) {
    .dew-card {
      flex-direction: row;
      min-height: 500px;
    }
  }

  .dew-left {
    flex: 0 0 auto;
    width: 100%;
    padding: 32px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  @media (min-width: 768px) {
    .dew-left {
      width: 340px;
      border-bottom: none;
      border-right: 1px solid var(--border-color);
    }
  }

  .dew-right {
    flex: 1;
    background: var(--bg-page);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px;
    min-height: 360px;
  }

  .dew-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .dew-field-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .dew-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dew-p);
  }

  .dew-val-display {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1;
  }

  .dew-unit {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
  }

  .dew-slider {
    width: 100%;
    height: 6px;
    accent-color: var(--dew-p);
    cursor: pointer;
    border-radius: 9999px;
  }

  .dew-steps {
    display: flex;
    gap: 8px;
  }

  .dew-step {
    flex: 1;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    color: var(--text-main);
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s;
  }

  .dew-step:hover {
    border-color: var(--dew-p);
    color: var(--dew-p);
  }

  .dew-result-section {
    text-align: center;
  }

  .dew-result-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin: 0 0 8px;
  }

  .dew-result-value {
    font-size: 5rem;
    font-weight: 900;
    color: #06b6d4;
    line-height: 1;
    margin: 0;
  }

  .dew-result-unit {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-muted);
  }

  .dew-risk-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    width: 100%;
    max-width: 320px;
    transition: background 0.3s;
  }

  .dew-risk-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .dew-risk-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .dew-risk-name {
    font-size: 0.875rem;
    font-weight: 700;
  }

  .dew-risk-desc {
    font-size: 0.6875rem;
    opacity: 0.8;
  }

  .dew-risk-low {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #4ade80;
  }

  .dew-risk-low .dew-risk-dot {
    background: #22c55e;
  }

  .dew-risk-medium {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #fbbf24;
  }

  .dew-risk-medium .dew-risk-dot {
    background: #f59e0b;
  }

  .dew-risk-high {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    color: #fb923c;
  }

  .dew-risk-high .dew-risk-dot {
    background: #f97316;
  }

  .dew-risk-extreme {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
  }

  .dew-risk-extreme .dew-risk-dot {
    background: #ef4444;
  }

  .dew-gauge {
    width: 100%;
    max-width: 320px;
  }

  .dew-gauge-track {
    fill: var(--bg-muted);
  }