.support-page {
  animation: supportPageEnter var(--dur-enter) var(--smooth) both;
}

.support-hero {
  padding: calc(var(--nav-h) + var(--space-8)) 0 var(--space-8);
}

.support-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 464px);
  align-items: center;
  gap: var(--space-8);
}

.support-hero-copy h1 {
  max-width: 720px;
  margin: 0 0 var(--space-5);
  color: var(--text);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.support-lede {
  max-width: 640px;
  color: var(--text-2);
  font-size: 18px;
  line-height: 1.6;
}

.support-eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  color: var(--text-2);
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.04em;
}

.live-dot,
.row-dot,
.support-checklist span {
  width: var(--space-2);
  height: var(--space-2);
  border-radius: var(--r-pill);
  background: var(--success);
  flex: 0 0 auto;
}

.live-dot,
.row-dot {
  animation: supportStatus var(--dur-data) var(--smooth) infinite alternate;
}

.support-actions,
.support-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--space-7);
  padding: 0 var(--space-5);
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  cursor: pointer;
  transition: transform var(--dur-press) var(--instant),
              background var(--dur-fast) var(--smooth),
              border-color var(--dur-fast) var(--smooth),
              box-shadow var(--dur-fast) var(--smooth);
}

.support-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.support-btn:active {
  transform: scale(0.97);
}

.support-btn-primary {
  background: var(--text);
  border-color: var(--text);
  color: var(--surface);
}

.support-btn-secondary {
  background: var(--surface);
  color: var(--text);
}

.support-btn-light {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.support-btn-dark {
  background: color-mix(in srgb, var(--surface) 8%, transparent);
  border-color: color-mix(in srgb, var(--surface) 18%, transparent);
  color: var(--surface);
}

.support-email-note {
  margin-top: var(--space-4);
  color: var(--text-2);
  font-size: 13px;
  line-height: 20px;
}

.support-email-note a {
  color: var(--text);
  font-weight: 600;
}

.support-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.support-trust span,
.console-pill {
  display: inline-flex;
  align-items: center;
  min-height: var(--space-6);
  padding: 0 var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--text-2);
  font-size: 13px;
  line-height: 20px;
}

.support-console {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-xl);
}

.console-top,
.console-footer,
.console-row {
  position: relative;
  z-index: 1;
}

.console-top {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5);
  border-bottom: 1px solid var(--border-2);
}

.console-label,
.console-footer,
.console-row em {
  color: var(--text-muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}

.console-top strong {
  display: block;
  margin-top: var(--space-1);
  color: var(--text);
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.03em;
}

.console-rows {
  display: grid;
  gap: var(--space-2);
  padding: var(--space-4);
}

.console-row {
  display: grid;
  grid-template-columns: var(--space-3) minmax(0, 1fr) auto;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-4);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--surface) 86%, var(--surface-2));
  opacity: 0.72;
  transform: translateY(0);
  transition: opacity var(--dur-enter) var(--smooth),
              transform var(--dur-spring) var(--spring),
              border-color var(--dur-enter) var(--smooth),
              box-shadow var(--dur-enter) var(--smooth);
}

.console-row.active {
  opacity: 1;
  transform: translateY(-2px);
  border-color: var(--border);
  box-shadow: var(--shadow-md);
}

.console-row strong {
  display: block;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
}

.console-row span:not(.row-dot) {
  display: block;
  margin-top: var(--space-1);
  color: var(--text-2);
  font-size: 13px;
  line-height: 20px;
}

.console-footer {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5) var(--space-5);
  border-top: 1px solid var(--border-2);
}

.support-section {
  padding: var(--space-8) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-7);
}

.section-head.compact {
  margin-bottom: 0;
}

.section-head h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-head p {
  margin-top: var(--space-4);
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.issue-card {
  display: flex;
  min-height: 224px;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-5);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(var(--space-4));
  transition: opacity var(--dur-enter) var(--smooth) var(--reveal-delay, 0ms),
              transform var(--dur-spring) var(--spring) var(--reveal-delay, 0ms),
              box-shadow var(--dur-fast) var(--smooth),
              border-color var(--dur-fast) var(--smooth);
}

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

.issue-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.issue-card:active {
  transform: scale(0.97);
  transition: transform var(--dur-press) var(--instant);
}

.issue-card svg {
  width: var(--space-6);
  height: var(--space-6);
  stroke: var(--text);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--dur-spring) var(--spring),
              stroke var(--dur-fast) var(--smooth);
}

.issue-card:hover svg {
  transform: translateY(-2px) rotate(-4deg);
}

.issue-card.sensitive svg {
  stroke: var(--warning);
}

.issue-card strong {
  margin-top: auto;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
}

.issue-card span {
  color: var(--text-2);
  font-size: 13px;
  line-height: 20px;
}

.guidance-grid,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: var(--space-8);
  align-items: start;
}

.support-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  list-style: none;
}

.support-checklist li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-height: var(--space-8);
  padding: 0 var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
}

.support-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.timeline-card {
  position: relative;
  min-height: 248px;
  padding: var(--space-5);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  opacity: 0;
  transform: translateY(var(--space-4));
  transition: opacity var(--dur-enter) var(--smooth),
              transform var(--dur-spring) var(--spring),
              border-color var(--dur-fast) var(--smooth),
              box-shadow var(--dur-fast) var(--smooth);
}

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

.timeline-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.timeline-card span {
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 20px;
}

.timeline-card h3 {
  margin-top: var(--space-6);
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.02em;
}

.timeline-card p {
  margin-top: var(--space-3);
  color: var(--text-2);
  font-size: 13px;
  line-height: 20px;
}

.support-faq {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  color: var(--text-muted);
  font-size: 18px;
  line-height: 24px;
  transition: transform var(--dur-spring) var(--spring),
              color var(--dur-fast) var(--smooth);
}

.faq-question:hover::after,
.faq-item.open .faq-question::after {
  color: var(--text);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-enter) var(--smooth);
}

.faq-answer p {
  overflow: hidden;
  color: var(--text-2);
  font-size: 13px;
  line-height: 20px;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: var(--space-5);
}

.support-cta-band {
  margin-top: var(--space-8);
}

.support-cta-band .hero-h1 {
  max-width: none;
}

.support-cta-actions {
  justify-content: center;
}

.section-reveal {
  opacity: 0;
  transform: translateY(var(--space-5));
  transition: opacity var(--dur-enter) var(--smooth),
              transform var(--dur-spring) var(--spring);
}

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

@keyframes supportStatus {
  from {
    transform: scale(0.82);
    opacity: 0.72;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes supportPageEnter {
  from {
    opacity: 0;
    transform: translateY(var(--space-4));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .support-hero-grid,
  .guidance-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

  .support-console {
    max-width: 640px;
  }
}

@media (max-width: 768px) {
  .support-hero {
    padding: calc(var(--nav-h) + var(--space-7)) 0 var(--space-7);
  }

  .support-hero-copy h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .support-lede {
    font-size: 15px;
    line-height: 1.6;
  }

  .support-section {
    padding: var(--space-7) 0;
  }

  .issue-grid,
  .support-timeline,
  .support-checklist {
    grid-template-columns: 1fr;
  }

  .issue-card {
    min-height: 192px;
  }

  .console-footer {
    flex-direction: column;
  }

  .support-actions,
  .support-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .support-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-page,
  .section-reveal,
  .issue-card,
  .timeline-card,
  .console-row,
  .support-btn,
  .issue-card svg,
  .faq-answer,
  .faq-question::after,
  .live-dot,
  .row-dot {
    animation: none;
    transition: none;
  }

  .support-page,
  .section-reveal,
  .issue-card,
  .timeline-card {
    opacity: 1;
    transform: none;
  }
}
