/* Dispute Resolution Landing Page Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    background: #fff;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #111;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  ::selection {
    background: #111;
    color: #fff;
  }
  
  ::-webkit-scrollbar {
    width: 2px;
  }
  
  ::-webkit-scrollbar-track {
    background: #fff;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #111;
  }
  
  /* Typography */
  .serif {
    font-family: 'EB Garamond', Georgia, serif;
  }
  
  /* Hero Section */
  .hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px 40px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
  }
  
  .hero-bg-number {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-60%);
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(180px, 22vw, 320px);
    color: #f2f2f2;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    opacity: 0;
    animation: fadeInNumber 1.5s ease 0.3s forwards;
  }
  
  @keyframes fadeInNumber {
    to {
      opacity: 1;
    }
  }
  
  .hero-content {
    max-width: 800px;
    position: relative;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInHero 1.1s ease 0.2s forwards;
  }
  
  @keyframes fadeInHero {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 28px;
  }
  
  .hero-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(52px, 7vw, 92px);
    font-weight: 400;
    line-height: 1.05;
    color: #111;
    letter-spacing: -0.02em;
    margin-bottom: 36px;
  }
  
  .hero-title em {
    font-style: italic;
    color: #555;
  }
  
  .hero-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    max-width: 540px;
    margin-bottom: 52px;
  }
  
  .hero-actions {
    display: flex;
    align-items: center;
    gap: 48px;
  }
  
  .btn-primary {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    background: #111;
    padding: 16px 36px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
  }
  
  .btn-primary:hover {
    background: #333;
  }
  
  .btn-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #111;
    padding-bottom: 2px;
    transition: opacity 0.2s;
  }
  
  .btn-link:hover {
    opacity: 0.5;
  }
  
  /* Scroll indicator */
  .scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeInScroll 1s ease 1.2s forwards;
  }
  
  @keyframes fadeInScroll {
    to {
      opacity: 0.4;
    }
  }
  
  .scroll-line {
    width: 1px;
    height: 60px;
    background: #111;
    transform-origin: top;
    animation: scrollLine 2s ease-in-out infinite;
  }
  
  @keyframes scrollLine {
    0% {
      transform: scaleY(0);
      opacity: 0;
    }
    50% {
      transform: scaleY(1);
      opacity: 1;
    }
    100% {
      transform: scaleY(0);
      opacity: 0;
    }
  }
  
  .scroll-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #111;
    writing-mode: vertical-lr;
  }
  
  /* Intro Section */
  .intro-section {
    padding: 80px 60px 100px;
    border-top: 1px solid #eee;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  
  .intro-section.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .intro-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }
  
  .intro-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #999;
  }
  
  .intro-content {
    max-width: 680px;
  }
  
  .intro-primary {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(22px, 2.5vw, 30px);
    line-height: 1.6;
    color: #333;
    font-weight: 400;
    margin-bottom: 28px;
  }
  
  .intro-secondary {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #777;
    max-width: 560px;
  }
  
  /* Stages Section */
  .stages-section {
    padding: 0 60px 120px;
  }
  
  /* Spectrum Widget */
  .spectrum-widget {
    margin-bottom: 100px;
    padding: 60px;
    border: 1px solid #ddd;
    background: #fafafa;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  
  .spectrum-widget.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .spectrum-widget-header {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 60px;
    margin-bottom: 48px;
    align-items: start;
  }
  
  .spectrum-widget-title h3 {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    color: #111;
    margin: 0 0 8px;
    line-height: 1.3;
  }
  
  .spectrum-widget-title p {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #666;
    margin: 0;
    font-style: italic;
  }
  
/* Slider Container */
.spectrum-slider-container {
  position: relative;
  margin-bottom: 40px;
}

.spectrum-gradient-track {
  position: relative;
  margin-bottom: 32px;
}
  
  .spectrum-gradient {
    height: 6px;
    background: linear-gradient(to right, #d4d4d4, #a8a8a8, #7a7a7a, #4a4a4a, #2a2a2a, #111);
    border-radius: 3px;
  }
  
  /* Custom Slider */
  .spectrum-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    outline: none;
    cursor: pointer;
    z-index: 2;
  }
  
  .spectrum-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #111;
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
  }
  
  .spectrum-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
  }
  
  .spectrum-slider::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.1);
  }
  
  .spectrum-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #111;
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
  }
  
  .spectrum-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
  }
  
  .spectrum-slider::-moz-range-thumb:active {
    cursor: grabbing;
  }
  
  /* Stage Markers */
  .spectrum-markers {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    pointer-events: none;
  }
  
  .spectrum-marker {
    background: none;
    border: none;
    padding: 0;
    position: relative;
    pointer-events: auto;
    cursor: pointer;
  }
  
  .marker-dot {
    display: block;
    width: 8px;
    height: 8px;
    background: #fff;
    border: 2px solid #999;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .spectrum-marker.active .marker-dot {
    background: #111;
    border-color: #111;
    transform: scale(1.2);
  }
  
  .spectrum-marker:hover .marker-dot {
    border-color: #111;
    transform: scale(1.15);
  }
  
  /* Interactive Stage Labels */
  .spectrum-stages-interactive {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .spectrum-stage-btn {
    background: none;
    border: none;
    padding: 12px 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }
  
  .spectrum-stage-btn:hover {
    background: rgba(0, 0, 0, 0.02);
  }
  
  .spectrum-stage-btn.active {
    border-bottom-color: #111;
  }
  
  .stage-number-small {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 11px;
    color: #999;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
  }
  
  .spectrum-stage-btn.active .stage-number-small,
  .spectrum-stage-btn:hover .stage-number-small {
    color: #111;
  }
  
  .stage-name-small {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    color: #666;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    transition: color 0.3s ease;
  }
  
  .spectrum-stage-btn.active .stage-name-small {
    color: #111;
    font-weight: 500;
  }
  
  .spectrum-stage-btn:hover .stage-name-small {
    color: #111;
  }
  
  /* End Labels */
  .spectrum-end-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 8px;
  }
  
  .spectrum-label-left {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: #888;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  
  .spectrum-label-right {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: #111;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
  }
  
  /* Preview Card */
  .spectrum-preview {
    background: #fff;
    border: 1px solid #ddd;
    padding: 40px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  
  .spectrum-preview.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  .preview-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 16px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 6px;
  }
  
  .preview-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: #111;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
  }
  
  .preview-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #888;
    margin: 0 0 24px;
    font-style: italic;
  }
  
  .preview-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    margin: 0 0 32px;
    max-width: 720px;
  }
  
  .preview-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid #e5e5e5;
  }
  
  .preview-intensity {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .preview-meta-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
  }
  
  .preview-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #111;
    background: none;
    border: 1px solid #111;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .preview-learn-more:hover {
    background: #111;
    color: #fff;
  }
  
  .preview-learn-more svg {
    transition: transform 0.3s ease;
  }
  
  .preview-learn-more:hover svg {
    transform: translateY(2px);
  }
  
  /* Stage Cards */
  .stage-card {
    border-top: 1px solid #111;
    padding: 52px 0 56px;
    cursor: default;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.85s ease, transform 0.85s ease;
  }
  
  .stage-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Hover line effect */
  .stage-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0%;
    background: #111;
    transition: width 0.5s ease;
  }
  
  .stage-card:hover::after {
    width: 100%;
  }
  
  .stage-card-inner {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  
  .stage-number {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 13px;
    color: #999;
    letter-spacing: 0.05em;
  }
  
  /* Left column */
  .stage-left {
  }
  
  .stage-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 6px;
  }
  
  .stage-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 400;
    line-height: 1.15;
    color: #111;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
  }
  
  .stage-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #888;
    margin: 0 0 28px;
    font-style: italic;
  }
  
  .stage-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    margin: 0 0 32px;
    max-width: 480px;
  }
  
  .stage-intensity-wrapper {
    margin-bottom: 16px;
  }
  
  .intensity-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 8px;
  }
  
  .intensity-bar {
    display: flex;
    gap: 4px;
    align-items: center;
  }
  
  .intensity-segment {
    width: 24px;
    height: 3px;
    background: #ddd;
    transition: background 0.3s ease;
  }
  
  .intensity-segment.active {
    background: #111;
  }
  
  /* Right column */
  .stage-right {
  }
  
  .stage-when-section {
    margin-bottom: 36px;
  }
  
  .stage-section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 16px;
  }
  
  .stage-when-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .stage-when-item {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #555;
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
  }
  
  .stage-when-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 1px;
    background: #aaa;
    display: block;
  }
  
  .stage-why-section {
    border-left: 1px solid #ddd;
    padding-left: 20px;
  }
  
  .stage-why-text {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin: 0;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 120px 60px;
    background: #111;
  }
  
  .cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  
  .cta-content.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .cta-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 28px;
  }
  
  .cta-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
  }
  
  .btn-primary-inverse {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #111;
    background: #fff;
    padding: 18px 40px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .btn-primary-inverse:hover {
    background: #f0f0f0;
  }
  
  .cta-quote {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 20px;
    line-height: 1.75;
    color: #888;
    font-style: italic;
    margin-bottom: 48px;
  }
  
  .cta-divider {
    border-top: 1px solid #333;
    padding-top: 32px;
    margin-bottom: 0;
  }
  
  .cta-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #555;
    line-height: 1.7;
  }
  
  /* Footer */
  .footer {
    padding: 40px 60px;
    border-top: 1px solid #eee;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-copyright {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #bbb;
    letter-spacing: 0.08em;
  }
  
  .footer-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: #ccc;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .hero {
      padding: 0 40px 60px;
    }
  
    .hero-bg-number {
      right: 40px;
    }
  
    .intro-container {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .stages-section {
      padding: 0 40px 80px;
    }
  
    .spectrum-bar {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  
    .stage-card-inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  
    .cta-section {
      padding: 80px 40px;
    }
  
    .cta-content {
      grid-template-columns: 1fr;
      gap: 60px;
    }
  
    .footer {
      padding: 40px 40px;
    }
  }
  
  @media (max-width: 768px) {
    .hero {
      padding: 0 24px 40px;
      min-height: 80vh;
    }
  
    .hero-bg-number {
      right: 24px;
      font-size: 140px;
    }
  
    .hero-actions {
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
    }
  
    .scroll-indicator {
      right: 24px;
    }
  
    .intro-section {
      padding: 60px 24px 80px;
    }
  
    .stages-section {
      padding: 0 24px 60px;
    }
  
    .spectrum-widget {
      padding: 32px 24px;
      margin-bottom: 60px;
    }
  
    .spectrum-widget-header {
      grid-template-columns: 1fr;
      gap: 24px;
      margin-bottom: 32px;
    }
  
    .spectrum-stages-interactive {
      flex-wrap: wrap;
    }
  
    .spectrum-stage-btn {
      flex: 0 0 33.333%;
      font-size: 9px;
    }
  
    .stage-name-small {
      font-size: 9px;
    }
  
    .spectrum-preview {
      padding: 28px 20px;
    }
  
    .preview-title {
      font-size: 24px;
    }
  
    .preview-meta {
      flex-direction: column;
      gap: 20px;
      align-items: flex-start;
    }
  
    .spectrum-stages {
      flex-wrap: wrap;
      gap: 8px;
    }
  
    .spectrum-stages span {
      flex: 0 0 45%;
    }
  
    .stage-card {
      padding: 40px 0 44px;
    }
  
    .stage-card-inner {
      gap: 24px;
    }
  
    .cta-section {
      padding: 60px 24px;
    }
  
    .cta-content {
      gap: 48px;
    }
  
    .footer {
      padding: 32px 24px;
    }
  
    .footer-content {
      flex-direction: column;
      gap: 16px;
      text-align: center;
    }
  }
  