/* ==========================================================================
   PaceOut - Unified Content Pages Design System & Primitives
   Synchronized with homepage tokens: #080807 | #FF6B00 | #141416 | #FFFDF8
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Container Synchronization & Typography Base
   -------------------------------------------------------------------------- */
html {
  background: var(--paceout-ink, #080807);
}

body {
  background: var(--paceout-ink, #080807);
  color: var(--paceout-white, #fffdfa);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.wrap,
.page-wrap,
.po-page-frame {
  width: min(var(--po-content-max, 1180px), calc(100% - 64px));
  max-width: none;
  margin-inline: auto;
  padding-inline: 0;
  box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   2. Breadcrumbs & Header-Aligned Vertical Rhythm
   -------------------------------------------------------------------------- */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  padding-bottom: 6px;
  margin-bottom: 0;
  color: var(--paceout-text-dim, #a7a49b);
  font-size: 0.82rem;
  line-height: 1.4;
}

.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--paceout-text-dim, #9e9b91);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--paceout-white, #fffdfa);
}

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.3);
  user-select: none;
}

.section,
.po-section {
  padding-block: clamp(48px, 6vw, 88px);
}

.hero-section,
.hero {
  padding-top: 24px;
  padding-bottom: clamp(48px, 6vw, 80px);
}

.support-container,
.terms-container,
.a11y-container,
.legal-container {
  padding-top: 24px;
  padding-bottom: clamp(48px, 6vw, 80px);
}

/* --------------------------------------------------------------------------
   3. Typography Hierarchy, Eyebrows & Section Headings
   -------------------------------------------------------------------------- */
.hero h1,
.heading-lg,
.support-title,
.terms-title,
.page-title,
.hero-section h1 {
  color: var(--paceout-white, #fffdfa);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.06;
  margin-top: 10px;
  margin-bottom: 18px;
}

.hero h1,
.hero-section h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.heading-lg,
.support-title,
.terms-title,
.page-title {
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
}

.label,
.po-eyebrow,
.terms-label,
.eyebrow,
.growth-eyebrow {
  color: var(--paceout-orange, #ff6b00);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  display: block;
}

.subheading,
.support-sub,
.terms-intro,
.hero-lede,
.growth-lede {
  color: var(--paceout-text-soft, #c4c1b9);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.6;
}

.section-heading--center,
.section-heading.text-center {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.section-heading--center h2,
.section-heading.text-center h2 {
  margin-inline: auto;
  margin-top: 10px;
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -.035em;
  line-height: 1.1;
  color: var(--paceout-white, #fffdfa);
}

.section-heading--center .subheading,
.section-heading.text-center .subheading {
  max-width: 620px;
  margin-inline: auto;
  color: var(--paceout-text-soft, #c4c1b9);
}

/* --------------------------------------------------------------------------
   4. Canonical Frosted Glass Card Primitives
   Formula: linear-gradient(135deg, rgba(255,255,255,.065), rgba(255,255,255,.015) 50%, rgba(255,107,0,.025))
   Border: 1px solid rgba(255,253,248,.13); Radius: 22px; Blur: 16px; Shadow: 0 20px 60px rgba(0,0,0,.24)
   -------------------------------------------------------------------------- */
.frosted-card,
.card,
.benefit-card,
.two-col-card,
.feature-card,
.contact-card,
.feedback-card,
.content-box,
.form-section,
.success-card,
.po-card,
.growth-card,
.legal-card,
.legal-summary-card {
  position: relative;
  isolation: isolate;
  background: linear-gradient(135deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .015) 50%, rgba(255, 107, 0, .025));
  border: 1px solid rgba(255, 253, 248, .13);
  border-radius: 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px rgba(255, 255, 255, .06), 0 20px 60px rgba(0, 0, 0, .24);
  padding: clamp(24px, 3.5vw, 36px);
  box-sizing: border-box;
  transition: transform .25s var(--paceout-ease, cubic-bezier(.16, 1, .3, 1)),
              border-color .25s ease,
              box-shadow .25s ease;
}

.frosted-card:hover,
.benefit-card:hover,
.two-col-card:hover,
.feature-card:hover,
.growth-card:hover,
.contact-card:hover,
.legal-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 253, 248, .24);
  box-shadow: inset 0 1px rgba(255, 255, 255, .12),
              0 28px 70px rgba(0, 0, 0, .32),
              0 0 25px rgba(255, 107, 0, .07);
}

.contact-card {
  border-top: 2px solid rgba(255, 107, 0, .65);
}

.contact-card__heading {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--paceout-white, #fffdfa);
}

.contact-card__body {
  font-size: 0.94rem;
  color: var(--paceout-text-soft, #c4c1b9);
  margin-bottom: 20px;
  line-height: 1.55;
}

.contact-card__link {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--paceout-orange, #ff6b00);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Buttons are owned by paceout-shared-shell.css. This family stylesheet only
   contributes route-specific geometry. */

/* --------------------------------------------------------------------------
   6. Chips, Badges & Step Indicators
   -------------------------------------------------------------------------- */
.chip, .plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 14px;
}

a.chip, button.chip, .category-pill, .category-pills button, .contact-card__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.chip--orange, .plan-badge {
  background: rgba(255, 107, 0, .14);
  border: 1px solid rgba(255, 107, 0, .3);
  color: var(--po-content-orange-soft, #ff8c3a);
}

.chip--green {
  background: rgba(89, 216, 135, .14);
  border: 1px solid rgba(89, 216, 135, .3);
  color: var(--paceout-green, #59d887);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 107, 0, .14);
  border: 1px solid rgba(255, 107, 0, .32);
  color: var(--po-content-orange-soft, #ff8c3a);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   7. Grids: Hero, Benefit, Bento & Pricing Cards
   -------------------------------------------------------------------------- */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 1fr);
  gap: clamp(40px, 5.5vw, 76px);
  align-items: center;
}

/* Product-page hero markup uses the same canonical two-column contract. */
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 1fr);
  gap: clamp(40px, 5.5vw, 76px);
  align-items: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  margin-top: 36px;
}

.benefit-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--paceout-white, #fffdfa);
  letter-spacing: -.03em;
}

.benefit-card p {
  margin: 0;
  color: var(--paceout-text-soft, #c4c1b9);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Pricing Grid & Plan Cards */
.pricing-grid,
.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
  margin-top: 36px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: clamp(28px, 3.5vw, 40px);
  border: 1px solid rgba(255, 253, 248, .14);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .015) 50%, rgba(255, 107, 0, .025));
  box-shadow: inset 0 1px rgba(255, 255, 255, .06), 0 24px 70px rgba(0, 0, 0, .25);
  box-sizing: border-box;
  transition: transform .25s var(--paceout-ease, cubic-bezier(.16, 1, .3, 1)),
              border-color .25s ease,
              box-shadow .25s ease;
}

.plan-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 253, 248, .26);
  box-shadow: inset 0 1px rgba(255, 255, 255, .12), 0 35px 90px rgba(0, 0, 0, .35);
}

.plan-card--premium {
  border-color: var(--po-content-orange, #ff6b00);
  background: radial-gradient(circle at 80% 15%, rgba(255, 107, 0, .16), transparent 50%),
              linear-gradient(135deg, rgba(30, 26, 22, .96), rgba(16, 14, 13, .98));
  box-shadow: inset 0 1px rgba(255, 184, 128, .25),
              0 24px 60px rgba(255, 107, 0, .14),
              0 35px 90px rgba(0, 0, 0, .42);
}

.plan-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--paceout-white, #fffdfa);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.plan-card--premium .plan-kicker {
  color: var(--po-content-orange-soft, #ff8c3a);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 10px;
  color: var(--paceout-white, #fffdfa);
}

.plan-price strong {
  font-size: clamp(3rem, 5.5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -.07em;
  line-height: .92;
}

.plan-price span {
  color: var(--paceout-text-dim, #a7a49b);
  font-size: .82rem;
}

.plan-description {
  margin: 0 0 24px;
  color: var(--paceout-text-soft, #c4c1b9);
  font-size: .92rem;
  line-height: 1.5;
}

.plan-list {
  display: grid;
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  color: var(--paceout-text-soft, #c4c1b9);
  font-size: .88rem;
  flex: 1 1 auto;
}

.plan-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  line-height: 1.45;
}

.plan-list li::before {
  content: '✓';
  color: var(--po-content-orange, #ff6b00);
  font-weight: 900;
  font-size: .95rem;
  flex: 0 0 auto;
}

.plan-card .button,
.plan-card .po-button,
.plan-card .btn {
  margin-top: auto;
  width: 100%;
}

.plan-terms {
  margin: 16px 0 0;
  color: var(--paceout-text-dim, #a7a49b);
  font-size: .72rem;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   8. Device Showcases & Ambient Backlight Stages
   -------------------------------------------------------------------------- */
.screen-preview,
.growth-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 360px;
  padding: clamp(20px, 3.5vw, 36px);
  border: 1px solid rgba(255, 253, 248, 0.1);
  border-radius: var(--paceout-radius-lg, 28px);
  background: radial-gradient(circle at 50% 30%, rgba(255, 107, 0, 0.16), transparent 65%),
              linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 24px 60px rgba(0, 0, 0, 0.28);
  box-sizing: border-box;
  position: relative;
}

.screen-preview .content-device,
.growth-proof .content-device,
.screen-preview .apple-device,
.growth-proof .apple-device {
  --device-width: min(290px, 78vw);
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.45));
}

.feature-showcase-box {
  display: grid;
  grid-template-columns: minmax(240px, 290px) minmax(0, 1.2fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-block: var(--paceout-space-6, 48px);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: var(--paceout-radius-lg, 28px);
  background: radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.12), transparent 55%),
              linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 24px 60px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

.feature-showcase-box .content-device,
.feature-showcase-box .apple-device {
  --device-width: min(260px, 72vw);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* --------------------------------------------------------------------------
   9. FAQ Accordion Primitive
   -------------------------------------------------------------------------- */
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  max-width: 820px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid rgba(255, 253, 248, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .035);
  padding: 0;
  overflow: hidden;
  transition: border-color .2s ease, background-color .2s ease;
}

.faq-item[open] {
  border-color: rgba(255, 107, 0, .35);
  background: rgba(255, 255, 255, .05);
}

.faq-item summary {
  display: flex;
  min-height: var(--paceout-touch-target, 48px);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  color: var(--paceout-white, #fffdfa);
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 700;
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  color: var(--po-content-orange, #ff6b00);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  transition: transform .25s ease;
  flex: 0 0 auto;
}

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

.faq-answer,
.faq-item p {
  padding: 0 24px 20px;
  margin: 0;
  color: var(--paceout-text-soft, #c4c1b9);
  font-size: .94rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   10. Final CTA Section
   -------------------------------------------------------------------------- */
.final-cta {
  overflow: hidden;
  text-align: center;
  background: radial-gradient(circle at 50% 0, rgba(255, 107, 0, .22), transparent 42%), var(--po-ink, #080807);
  padding-block: clamp(64px, 8vw, 108px);
}

.final-cta__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 680px;
  margin-inline: auto;
}

.final-cta__ring {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
  color: var(--paceout-text-dim, #a7a49b);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.final-cta__ring i {
  width: clamp(24px, 5vw, 48px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--paceout-orange, #ff6b00));
}

.final-cta__ring i:last-of-type {
  background: linear-gradient(90deg, var(--paceout-orange, #ff6b00), transparent);
}

.final-cta__ring b {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--paceout-orange, #ff6b00);
  border-radius: 50%;
  background: rgba(255, 107, 0, .14);
  color: var(--paceout-orange-light, #ff8c3a);
  font-size: .64rem;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(255, 107, 0, .2);
}

.final-cta h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: -.04em;
  line-height: 1.08;
  margin: 10px 0 16px;
  color: var(--paceout-white, #fffdfa);
}

.final-cta p {
  max-width: 540px;
  margin: 0 auto 28px;
  color: var(--paceout-text-soft, #c4c1b9);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.6;
}

.final-cta__compat {
  margin: 20px 0 0;
  color: var(--paceout-text-dim, #a7a49b);
  font-size: .76rem;
  letter-spacing: .02em;
}

/* --------------------------------------------------------------------------
   11. Legal & System Pages (Privacy, Terms, Accessibility, 404)
   -------------------------------------------------------------------------- */
.legal-container {
  max-width: var(--paceout-content-max, 1180px);
  margin-inline: auto;
}

.legal-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 36px;
}

.legal-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--paceout-text-dim, #a7a49b);
}

.legal-summary-card {
  margin-bottom: 44px;
}

.legal-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.legal-summary-item {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.legal-summary-item strong {
  display: block;
  color: var(--paceout-white, #fffdfa);
  font-size: 0.94rem;
  margin-bottom: 6px;
}

.legal-summary-item p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--paceout-text-soft, #c4c1b9);
}

.legal-toc {
  margin-bottom: 48px;
  padding: 20px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-toc__label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paceout-orange, #ff6b00);
  margin-bottom: 12px;
  display: block;
}

.legal-toc__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.legal-toc__links a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--paceout-text-soft, #c4c1b9);
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.legal-toc__links a:hover {
  color: var(--paceout-white, #fffdfa);
  border-color: rgba(255, 107, 0, 0.4);
  background: rgba(255, 107, 0, 0.12);
}

.legal-section-block {
  max-width: var(--paceout-content-readable, 72ch);
  scroll-margin-top: 110px;
  margin-bottom: 40px;
}

.legal-section-block h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--paceout-white, #fffdfa);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.legal-section-block p,
.legal-section-block li {
  color: var(--paceout-text-soft, #c4c1b9);
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-section-block ul,
.legal-section-block ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.terms-divider, .divider {
  background: rgba(255, 255, 255, .12);
  margin-block: 40px;
  height: 1px;
  border: 0;
}

/* 404 Error Page Layout */
.error-page-container {
  min-height: calc(100vh - 280px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 80px;
  text-align: center;
  box-sizing: border-box;
}

.error-card {
  max-width: 540px;
  width: 100%;
}

.error-card h1 {
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: var(--paceout-white, #fffdfa);
}

.error-card p {
  font-size: 16px;
  color: var(--paceout-text-soft, #c4c1b9);
  line-height: 1.6;
  margin: 0 0 32px;
}

.error-btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.error-btn-group .btn,
.error-btn-group .po-button,
.error-btn-group .button {
  width: 100%;
  justify-content: center;
}

.error-recovery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: 28px 0 0;
  text-align: left;
}

.recovery-card {
  display: grid;
  min-height: 104px;
  align-content: center;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255, 253, 248, .13);
  border-radius: 16px;
  background: rgba(255, 255, 255, .035);
  color: var(--paceout-white, #fffdfa);
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.recovery-card:hover,
.recovery-card:focus-visible {
  border-color: rgba(255, 107, 0, .65);
  background: rgba(255, 107, 0, .08);
  transform: translateY(-2px);
}

.recovery-card__title {
  font-size: .94rem;
  font-weight: 800;
}

.recovery-card__desc {
  color: var(--paceout-text-soft, #c4c1b9);
  font-size: .78rem;
  line-height: 1.45;
}

.recovery-card .arrow {
  color: var(--paceout-orange, #ff6b00);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .error-recovery-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   12. Form, Feedback & Support Primitives
   -------------------------------------------------------------------------- */
.feedback-section {
  margin-bottom: 48px;
}

.feedback-card {
  position: relative;
  overflow: hidden;
}

.feedback-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--paceout-orange, #ff6b00), transparent);
  opacity: 0.5;
}

.feedback-heading {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--paceout-white, #fffdfa);
}

.feedback-sub {
  font-size: 15px;
  color: var(--paceout-text-soft, #c4c1b9);
  margin: 0 0 28px;
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--paceout-text-soft, #c4c1b9);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.form-input {
  width: 100%;
  background: #0a0a0c;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--paceout-white, #fffdfa);
  font-family: inherit;
  transition: border-color 0.25s var(--paceout-ease, cubic-bezier(.16, 1, .3, 1)), box-shadow 0.25s var(--paceout-ease, cubic-bezier(.16, 1, .3, 1));
  outline: none;
  box-sizing: border-box;
}

.form-input::placeholder {
  color: #52525b;
}

.form-input:focus {
  border-color: var(--paceout-orange, #ff6b00);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.12);
}

.form-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
  max-height: 300px;
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23a1a1aa' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.char-count {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 11px;
  color: #52525b;
  pointer-events: none;
  transition: color 0.2s;
}

.char-count.warn { color: #f59e0b; }
.char-count.over { color: #ef4444; }

.error-msg {
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
  display: none;
}

.error-msg.visible { display: block; }

.notify-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(255, 107, 0, 0.04);
  border: 1px solid rgba(255, 107, 0, 0.12);
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.notify-row:hover {
  background: rgba(255, 107, 0, 0.07);
  border-color: rgba(255, 107, 0, 0.25);
}

.notify-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 1px;
}

.notify-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.notify-track {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  transition: background 0.25s var(--paceout-ease, cubic-bezier(.16, 1, .3, 1));
}

.notify-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s var(--paceout-ease, cubic-bezier(.16, 1, .3, 1)), background 0.25s;
}

.notify-toggle input:checked + .notify-track {
  background: var(--paceout-orange, #ff6b00);
}

.notify-toggle input:checked + .notify-track .notify-thumb {
  transform: translateX(20px);
}

.notify-toggle input:focus-visible + .notify-track {
  outline: 2px solid var(--paceout-orange, #ff6b00);
  outline-offset: 3px;
}

.notify-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--paceout-white, #fffdfa);
  line-height: 1.3;
}

.notify-desc {
  font-size: 13px;
  color: var(--paceout-text-soft, #c4c1b9);
  margin-top: 2px;
  line-height: 1.4;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 800;
  background: var(--paceout-orange, #ff6b00);
  color: #000;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.2s var(--paceout-ease, cubic-bezier(.16, 1, .3, 1)),
              transform 0.15s var(--paceout-ease, cubic-bezier(.16, 1, .3, 1)),
              box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.25);
}

.submit-btn:hover:not(:disabled) {
  background: var(--paceout-orange-light, #ff8c3a);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 107, 0, 0.35);
}

.submit-btn:active:not(:disabled) { transform: translateY(0); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.submit-spinner { display: none; width: 18px; height: 18px; border: 2.5px solid rgba(0,0,0,0.2); border-top-color: #000; border-radius: 50%; animation: spin 0.7s linear infinite; }
.submit-btn.loading .submit-spinner { display: block; }
.submit-btn.loading .submit-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.feedback-success { display: none; text-align: center; padding: 48px 24px; }
.feedback-success.visible { display: block; }
.feedback-form.hidden { display: none; }
.success-check { width: 64px; height: 64px; margin: 0 auto 20px; background: rgba(89, 216, 135, 0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.success-check svg { width: 32px; height: 32px; color: var(--paceout-green, #59d887); }
.form-error-banner { display: none; padding: 14px 18px; background: rgba(239, 68, 68, 0.08); border: 1px solid rgba(239, 68, 68, 0.2); border-radius: 12px; font-size: 14px; color: #fca5a5; margin-bottom: 20px; line-height: 1.5; }
.form-error-banner.visible { display: block; }

/* --------------------------------------------------------------------------
   14. Editorial Layout & Legal Detail Blocks
   -------------------------------------------------------------------------- */
.legal-editorial-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.legal-sidebar {
  position: sticky;
  top: 104px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
}
.legal-sidebar-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paceout-orange, #ff6b00);
  margin-bottom: 16px;
}
.legal-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-toc-list a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--paceout-text-soft, #c4c1b9);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.35;
  transition: all 0.2s ease;
}
.legal-toc-list a:hover {
  color: var(--paceout-white, #fffdfa);
  background: rgba(255, 255, 255, 0.06);
}
.legal-sidebar-cta {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.legal-sidebar-cta p {
  font-size: 0.8rem;
  color: var(--paceout-text-dim, #a7a49b);
  margin: 0 0 12px;
}
.category-bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 18px;
  margin-bottom: 24px;
}
.category-bento-card {
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.category-bento-card h3 {
  font-size: 0.98rem;
  color: var(--paceout-white, #fffdfa);
  margin: 8px 0 6px;
}
.category-bento-card p {
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
  color: var(--paceout-text-soft, #c4c1b9);
}
.legal-basis-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}
.legal-basis-card {
  padding: 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.legal-basis-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.legal-basis-card strong {
  color: var(--paceout-white, #fffdfa);
  font-size: 1.05rem;
}
.legal-basis-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--paceout-text-soft, #c4c1b9);
}
.contact-card-box {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 253, 248, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}
.contact-card-box h3 {
  font-size: 1.15rem;
  color: var(--paceout-white, #fffdfa);
  margin: 0 0 8px;
}
.contact-card-box p {
  font-size: 0.88rem;
  color: var(--paceout-text-soft, #c4c1b9);
  line-height: 1.6;
  margin: 0 0 18px;
}
.contact-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 960px) {
  .legal-editorial-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .legal-sidebar {
    position: static;
    margin-bottom: 32px;
  }
}

/* --------------------------------------------------------------------------
   Support Page - Contact Grid & FAQ Header
   -------------------------------------------------------------------------- */
.support-grid {
  margin-bottom: 48px;
}

.faq-section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  margin-top: 48px;
  gap: 16px;
}

.faq-section-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
}

.category-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.notify-confirmation {
  display: none;
  font-size: 14px;
  color: var(--paceout-orange, #ff6b00);
  margin: 12px 0 0;
  font-weight: 600;
}

.feedback-success__body {
  margin-bottom: 8px;
}

.support-faq-list {
  margin-top: 24px;
}
