/* ============================================================
   5 STAR REACH — interior-pages.css
   === HOW IT WORKS COMPONENTS ===
   Appended to style.css baseline. No existing rules modified.
   ============================================================ */

/* === HOW IT WORKS COMPONENTS === */

.hiw-step-section {
  background-color: var(--color-white);
  padding-block: var(--section-padding-y);
  border-top: 1px solid var(--color-border);
}

.hiw-step-section--dark {
  background-color: var(--color-charcoal);
  border-top: none;
  border-bottom: none;
}

.hiw-step-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-6);
  align-items: start;
  max-width: 820px;
  margin-inline: auto;
}

@media (max-width: 640px) {
  .hiw-step-inner {
    grid-template-columns: 1fr;
  }
}

.hiw-step-badge {
  font-family: var(--font-data);
  font-size: 5rem;
  font-weight: var(--weight-bold);
  color: var(--color-border);
  line-height: 1;
  letter-spacing: var(--tracking-tight);
  user-select: none;
  flex-shrink: 0;
  width: 80px;
  text-align: center;
}

.hiw-step-badge--gold {
  color: var(--color-gold);
  opacity: 0.4;
}

@media (max-width: 640px) {
  .hiw-step-badge {
    display: none;
  }
}

.hiw-step-body {
  font-size: var(--text-body);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-3);
}

.hiw-step-body--light {
  color: var(--color-text-on-dark-sub);
}

.hiw-step-body strong {
  color: var(--color-text-primary);
  font-weight: var(--weight-semibold);
}

.hiw-step-body--light strong {
  color: var(--color-text-on-dark);
}

/* Checklist */
.hiw-checklist {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-top: var(--space-4);
}

.hiw-checklist-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.hiw-checklist ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.hiw-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  line-height: var(--leading-snug);
}

.hiw-check {
  color: var(--color-success);
  font-weight: var(--weight-bold);
  flex-shrink: 0;
}

.hiw-checklist-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
  font-style: italic;
}

/* SMS comparison callout */
.hiw-sms-callout {
  background-color: var(--color-charcoal-mid);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  margin-block: var(--space-4);
}

.hiw-sms-callout-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.hiw-sms-compare {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  justify-content: center;
}

.hiw-sms-stat {
  text-align: center;
  flex: 1;
}

.hiw-sms-stat-number {
  font-family: var(--font-data);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--weight-bold);
  line-height: 1;
  display: block;
}

.hiw-sms-stat--good .hiw-sms-stat-number {
  color: var(--color-gold);
}

.hiw-sms-stat--weak .hiw-sms-stat-number {
  color: var(--color-text-on-dark-muted);
}

.hiw-sms-stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-on-dark-muted);
  margin-top: var(--space-1);
  display: block;
}

.hiw-sms-vs {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--color-text-on-dark-muted);
  text-transform: uppercase;
}

.hiw-sms-callout-body {
  font-size: var(--text-small);
  color: var(--color-text-on-dark-sub);
  line-height: var(--leading-relaxed);
  text-align: center;
  border-top: 1px solid var(--color-border-dark);
  padding-top: var(--space-3);
}

/* How It Works — extended gate diagram */
.hiw-gate-diagram {
  max-width: 700px;
  margin-inline: auto;
  margin-top: var(--space-6);
}

.hiw-gate-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.hiw-gate-bubble {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background-color: var(--color-charcoal-mid);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-3) var(--space-4);
  max-width: 480px;
  width: 100%;
}

.hiw-gate-bubble-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-text-on-dark);
  margin-bottom: 2px;
}

.hiw-gate-bubble-text {
  font-size: var(--text-small);
  color: var(--color-text-on-dark-sub);
  font-style: italic;
}

.hiw-gate-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hiw-gate-arrow-down {
  font-size: 1.5rem;
  color: var(--color-text-muted);
}

.hiw-gate-question {
  text-align: center;
  margin-bottom: var(--space-4);
}

.hiw-gate-question-text {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
}

.hiw-gate-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  justify-content: center;
}

.hiw-gate-option {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-data);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  border: 1px solid;
}

.hiw-gate-option--good {
  background-color: rgba(45, 155, 90, 0.1);
  border-color: rgba(45, 155, 90, 0.3);
  color: #5BC98A;
}

.hiw-gate-option--bad {
  background-color: rgba(192, 57, 43, 0.08);
  border-color: rgba(192, 57, 43, 0.2);
  color: #E67E74;
}

.hiw-gate-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

@media (max-width: 560px) {
  .hiw-gate-paths {
    grid-template-columns: 1fr;
  }
}

.hiw-gate-path {
  border-radius: var(--radius-xl);
  padding: var(--space-4);
}

.hiw-gate-path--positive {
  background-color: rgba(45, 155, 90, 0.08);
  border: 1px solid rgba(45, 155, 90, 0.25);
}

.hiw-gate-path--negative {
  background-color: rgba(192, 57, 43, 0.07);
  border: 1px solid rgba(192, 57, 43, 0.2);
}

.hiw-gate-path-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.hiw-gate-path-icon {
  font-size: 1.25rem;
}

.hiw-gate-path-title {
  font-family: var(--font-display);
  font-size: var(--text-small);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
}

.hiw-gate-path-flow {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  align-items: flex-start;
  margin-bottom: var(--space-3);
}

.hiw-gate-flow-step {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-1) var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  font-weight: var(--weight-medium);
}

.hiw-gate-flow-step--result {
  background-color: rgba(45, 155, 90, 0.12);
  border-color: rgba(45, 155, 90, 0.3);
  color: #2D9B5A;
  font-weight: var(--weight-bold);
}

.hiw-gate-flow-step--private {
  background-color: rgba(192, 57, 43, 0.08);
  border-color: rgba(192, 57, 43, 0.25);
  color: #C0392B;
  font-weight: var(--weight-bold);
}

.hiw-gate-flow-arrow {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding-left: var(--space-2);
}

.hiw-gate-path-detail {
  font-size: var(--text-xs);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
}

.hiw-gate-summary {
  text-align: center;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-4);
}

.hiw-gate-summary p {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.hiw-gate-summary strong {
  color: var(--color-text-primary);
}

/* Compliance card */
.hiw-compliance-card {
  background-color: var(--color-gold-subtle);
  border: 1px solid rgba(244, 196, 48, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  max-width: 700px;
  margin-inline: auto;
}

.hiw-compliance-title {
  font-family: var(--font-display);
  font-size: var(--text-h4);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hiw-compliance-card p {
  font-size: var(--text-small);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
}

.hiw-compliance-card p:last-child {
  margin-bottom: 0;
}

/* Timeline */
.hiw-timeline-section {
  background-color: var(--color-charcoal);
  padding-block: var(--section-padding-y);
}

.hiw-timeline {
  max-width: 600px;
  margin-inline: auto;
  position: relative;
}

.hiw-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--color-border-dark),
    var(--color-gold),
    var(--color-border-dark)
  );
}

.hiw-timeline-item {
  display: flex;
  gap: var(--space-4);
  padding-bottom: var(--space-5);
  position: relative;
}

.hiw-timeline-item--final {
  padding-bottom: 0;
}

.hiw-timeline-marker {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}

.hiw-timeline-dot {
  display: block;
  width: 32px;
  height: 32px;
  background-color: var(--color-charcoal-mid);
  border: 2px solid var(--color-border-dark);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.hiw-timeline-dot--gold {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.hiw-timeline-content {
  padding-top: var(--space-1);
}

.hiw-timeline-period {
  font-family: var(--font-data);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-1);
}

.hiw-timeline-event {
  font-size: var(--text-body);
  color: var(--color-text-on-dark-sub);
  line-height: var(--leading-relaxed);
}

/* How It Works FAQ */
.hiw-faq-section {
  background-color: var(--color-white);
  padding-block: var(--section-padding-y);
}

/* ============================================================
   === PRICING PAGE COMPONENTS ===
   ============================================================ */

.pricing-page-section {
  background-color: var(--color-white);
  padding-block: var(--section-padding-y);
}

.guarantee-card-title {
  font-size: var(--text-h3);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
  line-height: var(--leading-snug);
}

/* ROI Calculator */
.roi-section {
  background-color: var(--color-charcoal);
  padding-block: var(--section-padding-y);
}

.roi-inner {
  max-width: 820px;
  margin-inline: auto;
}

.roi-header {
  margin-bottom: var(--space-8);
}

.roi-subhead {
  font-size: var(--text-body);
  color: var(--color-text-on-dark-sub);
  line-height: var(--leading-relaxed);
  margin-top: var(--space-3);
  max-width: 600px;
}

.roi-calculator {
  background-color: var(--color-charcoal-mid);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.roi-inputs {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .roi-inputs {
    grid-template-columns: 1fr 1fr;
  }
}

.roi-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.roi-label {
  font-family: var(--font-display);
  font-size: var(--text-small);
  font-weight: var(--weight-semibold);
  color: var(--color-text-on-dark-sub);
}

.roi-input-wrap {
  position: relative;
}

.roi-input-prefix {
  position: absolute;
  left: var(--space-3);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-data);
  font-weight: var(--weight-semibold);
  color: var(--color-text-on-dark-muted);
  pointer-events: none;
}

.roi-input {
  width: 100%;
  background-color: var(--color-charcoal);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: 0.875rem var(--space-3);
  font-family: var(--font-data);
  font-size: var(--text-body);
  color: var(--color-text-on-dark);
  transition: border-color var(--transition-fast);
  -moz-appearance: textfield;
}

.roi-input::-webkit-outer-spin-button,
.roi-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.roi-input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-glow);
}

.roi-input-wrap .roi-input {
  padding-left: 2rem;
}

.roi-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.roi-select option {
  background-color: var(--color-charcoal-deep);
  color: var(--color-text-on-dark);
}

.roi-field-hint {
  font-size: var(--text-xs);
  color: var(--color-text-on-dark-muted);
}

/* Results */
.roi-results {
  border-top: 1px solid var(--color-border-dark);
  padding-top: var(--space-5);
}

.roi-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

@media (min-width: 640px) {
  .roi-results-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.roi-result-card {
  background-color: var(--color-charcoal);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-2);
  text-align: center;
}

.roi-result-card--gold {
  border-color: var(--color-gold-glow);
  background-color: var(--color-gold-subtle);
}

.roi-result-card--highlight {
  border-color: rgba(45, 155, 90, 0.3);
  background-color: rgba(45, 155, 90, 0.08);
}

.roi-result-label {
  font-size: var(--text-xs);
  color: var(--color-text-on-dark-muted);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-1);
}

.roi-result-number {
  font-family: var(--font-data);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--weight-bold);
  color: var(--color-gold);
  line-height: 1;
  letter-spacing: var(--tracking-tight);
}

.roi-result-card--highlight .roi-result-number {
  color: #5BC98A;
}

.roi-result-sub {
  font-size: var(--text-xs);
  color: var(--color-text-on-dark-muted);
  margin-top: var(--space-1);
}

.roi-disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-on-dark-muted);
  line-height: var(--leading-relaxed);
  text-align: center;
}

/* Comparison section */
.comparison-section {
  background-color: var(--color-white);
  padding-block: var(--section-padding-y);
  border-top: 1px solid var(--color-border);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

@media (max-width: 560px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

.comparison-col {
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-4);
}

.comparison-col--manual {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
}

.comparison-col--automated {
  background-color: var(--color-charcoal);
  border: 1px solid var(--color-border-dark);
  position: relative;
  overflow: hidden;
}

.comparison-col--automated::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--color-gold-deeper), var(--color-gold));
}

.comparison-col-title {
  font-family: var(--font-display);
  font-size: var(--text-small);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}

.comparison-col--manual .comparison-col-title {
  color: var(--color-text-secondary);
  border-color: var(--color-border);
}

.comparison-col--automated .comparison-col-title {
  color: var(--color-gold);
  border-color: var(--color-border-dark);
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-small);
  line-height: var(--leading-snug);
}

.comparison-item--bad {
  color: var(--color-text-muted);
}

.comparison-item--bad::before {
  content: '✕';
  color: var(--color-danger);
  flex-shrink: 0;
  font-weight: var(--weight-bold);
}

.comparison-item--good {
  color: var(--color-text-on-dark-sub);
}

.comparison-item--good::before {
  content: '✓';
  color: var(--color-gold);
  flex-shrink: 0;
  font-weight: var(--weight-bold);
}

.comparison-result {
  font-family: var(--font-data);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: var(--weight-bold);
  border-radius: var(--radius-lg);
  padding: var(--space-2) var(--space-3);
  text-align: center;
}

.comparison-result--bad {
  background-color: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.comparison-result--good {
  background-color: transparent;
  border: 1px solid rgba(244, 196, 48, 0.4);
  color: var(--color-gold);
}

.comparison-summary {
  font-size: var(--text-body-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  font-style: italic;
}

/* ============================================================
   === ABOUT PAGE COMPONENTS ===
   ============================================================ */

.about-section {
  padding-block: var(--section-padding-y);
}

.about-section--light {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.about-section--dark {
  background-color: var(--color-charcoal);
}

.about-prose-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}

@media (min-width: 768px) {
  .about-prose-layout {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-12);
  }

  .about-prose-layout--reversed {
    grid-template-columns: 1fr 1fr;
  }
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.about-body p {
  font-size: var(--text-body);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

.about-body--light p {
  color: var(--color-text-on-dark-sub);
}

.about-body strong {
  color: var(--color-text-primary);
  font-weight: var(--weight-semibold);
}

.about-body--light strong {
  color: var(--color-text-on-dark);
}

/* Stat card for about page */
.about-stat-aside {
  display: flex;
  justify-content: center;
}

.about-stat-card {
  background-color: var(--color-charcoal);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  text-align: center;
  width: 100%;
  max-width: 320px;
}

.about-stat-number {
  font-family: var(--font-data);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: var(--weight-bold);
  color: var(--color-gold);
  line-height: 1;
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-1);
}

.about-stat-label {
  font-family: var(--font-display);
  font-size: var(--text-small);
  font-weight: var(--weight-bold);
  color: var(--color-text-on-dark-sub);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.about-stat-source {
  font-size: var(--text-xs);
  color: var(--color-text-on-dark-muted);
  line-height: var(--leading-relaxed);
  border-top: 1px solid var(--color-border-dark);
  padding-top: var(--space-3);
}

.about-stat-source em {
  font-style: italic;
}

/* Mechanism card */
.about-mechanism-card {
  background-color: var(--color-charcoal-mid);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.about-mechanism-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-text-on-dark-muted);
}

.about-mechanism-flow {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.about-mechanism-step {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-small);
  font-weight: var(--weight-semibold);
}

.about-mechanism-step--good {
  background-color: rgba(45, 155, 90, 0.12);
  color: #5BC98A;
  border: 1px solid rgba(45, 155, 90, 0.25);
}

.about-mechanism-step--protected {
  background-color: rgba(192, 57, 43, 0.08);
  color: #E67E74;
  border: 1px solid rgba(192, 57, 43, 0.2);
}

.about-mechanism-icon {
  font-size: 1.125rem;
  flex-shrink: 0;
}

.about-mechanism-divider {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--color-text-on-dark-muted);
  text-align: center;
}

.about-mechanism-result {
  font-size: var(--text-small);
  color: var(--color-text-on-dark-muted);
  line-height: var(--leading-relaxed);
  font-style: italic;
  border-top: 1px solid var(--color-border-dark);
  padding-top: var(--space-3);
}

/* Founder layout */
.about-founder-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}

@media (min-width: 768px) {
  .about-founder-layout {
    grid-template-columns: 380px 1fr;
    gap: var(--space-10);
  }
}

.about-founder-photo {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.about-founder-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* Placeholder until real photo available */
.about-founder-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background-color: var(--color-charcoal-mid);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 380px;
}

.about-founder-photo-fallback {
  text-align: center;
  color: var(--color-text-muted);
  padding: var(--space-4);
}

.about-founder-photo-fallback span {
  display: block;
  font-size: 3rem;
  color: var(--color-gold);
  opacity: 0.3;
  margin-bottom: var(--space-2);
}

.about-founder-photo-fallback p {
  font-size: var(--text-small);
  color: var(--color-text-muted);
}

.about-founder-caption {
  text-align: left;
}

.about-founder-name {
  font-family: var(--font-display);
  font-size: var(--text-h4);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.about-founder-title {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-1);
}

.about-founder-creds {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-family: var(--font-data);
  letter-spacing: var(--tracking-wide);
}

/* Values section — deliberately sparse */
.about-values-section {
  background-color: var(--color-charcoal);
  padding-block: clamp(5rem, 12vw, 9rem); /* Generous padding — sparse section */
}

.about-values-inner {
  row-gap: var(--space-8);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .about-values-inner {
  row-gap: var(--space-8);
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
    align-items: center;
  }
}

.about-values-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.about-values-body p {
  font-size: var(--text-body);
  line-height: var(--leading-relaxed);
  color: var(--color-text-on-dark-sub);
}

.about-values-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: 48px;
}

.about-values-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  background-color: var(--color-charcoal-mid);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-3);
  text-align: center;
  transition: border-color var(--transition-base);
}

.about-values-badge:hover {
  border-color: var(--color-gold-glow);
}

.about-values-badge-icon {
  font-size: 1.75rem;
}

.about-values-badge span:last-child {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--color-text-on-dark-sub);
  letter-spacing: var(--tracking-wide);
  line-height: var(--leading-snug);
  text-transform: uppercase;
}

/* ============================================================
   === THANK YOU PAGE COMPONENTS ===
   ============================================================ */

.thankyou-hero {
  background-color: var(--color-charcoal);
  padding-block: clamp(4rem, 10vw, 7rem);
  text-align: center;
}

.thankyou-hero-content {
  max-width: 560px;
  margin-inline: auto;
}

.thankyou-check {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.thankyou-check svg {
  width: 72px;
  height: 72px;
  animation: check-draw 0.6s ease forwards;
}

@keyframes check-draw {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.thankyou-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: var(--weight-extrabold);
  color: var(--color-text-on-dark);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-2);
}

.thankyou-subhead {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: var(--weight-semibold);
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.thankyou-body {
  font-size: var(--text-body);
  color: var(--color-text-on-dark-sub);
  line-height: var(--leading-relaxed);
}

/* Next steps */
.thankyou-steps-section {
  background-color: var(--color-white);
  padding-block: var(--section-padding-y);
}

.thankyou-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 680px;
  margin-inline: auto;
}

.thankyou-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-4);
  align-items: start;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  transition: border-color var(--transition-base);
}

.thankyou-step:hover {
  border-color: var(--color-gold);
}

.thankyou-step-number {
  width: 52px;
  height: 52px;
  background-color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-size: 1.5rem;
  font-weight: var(--weight-bold);
  color: var(--color-charcoal-deep);
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.thankyou-step-content h3 {
  font-size: var(--text-h4);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-1);
  line-height: var(--leading-snug);
}

.thankyou-step-content p {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.thankyou-step-content a {
  color: var(--color-gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Guarantee reminder */
.thankyou-guarantee {
  background-color: var(--color-surface);
  padding-block: var(--space-8);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.thankyou-guarantee-card {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
}

.thankyou-guarantee-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.thankyou-guarantee-title {
  font-family: var(--font-display);
  font-size: var(--text-h4);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
  line-height: var(--leading-snug);
}

.thankyou-guarantee-card p {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* Share section */
.thankyou-share {
  background-color: var(--color-white);
  padding-block: var(--space-10);
  text-align: center;
}

.thankyou-share-inner {
  max-width: 520px;
  margin-inline: auto;
}

.thankyou-share-body {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-block: var(--space-3) var(--space-4);
}

/* Contact */
.thankyou-contact {
  background-color: var(--color-charcoal);
  padding-block: var(--space-10);
  text-align: center;
}

.thankyou-contact-inner {
  max-width: 520px;
  margin-inline: auto;
}

.thankyou-contact-body {
  font-size: var(--text-body);
  color: var(--color-text-on-dark-sub);
  line-height: var(--leading-relaxed);
  margin-block: var(--space-3) var(--space-5);
}

.thankyou-contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
}

/* ============================================================
   === SIGNUP PAGE COMPONENTS ===
   ============================================================ */

.signup-section {
  background-color: var(--color-white);
  padding-block: var(--section-padding-y);
}

.signup-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
  max-width: 900px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .signup-layout {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-8);
  }
}

/* Placeholder card */
.signup-placeholder {
  background-color: var(--color-surface);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.signup-placeholder-icon {
  font-size: 3rem;
}

.signup-placeholder-title {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
  line-height: var(--leading-snug);
}

.signup-placeholder-body {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 400px;
}

.signup-placeholder-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  width: 100%;
  max-width: 320px;
}

.signup-placeholder-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* Sidebar */
.signup-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: sticky;
  top: 96px;
}

.signup-sidebar-card {
  background-color: var(--color-charcoal);
  border-radius: var(--radius-2xl);
  padding: var(--space-5);
  position: relative;
  overflow: hidden;
}

.signup-sidebar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--color-gold-deeper), var(--color-gold));
}

.signup-sidebar-plan {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

.signup-sidebar-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: var(--space-1);
}

.signup-sidebar-currency {
  font-family: var(--font-data);
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
  color: var(--color-text-on-dark-sub);
  margin-top: 0.5rem;
}

.signup-sidebar-amount {
  font-family: var(--font-data);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: var(--weight-bold);
  color: var(--color-gold);
  line-height: 1;
  letter-spacing: var(--tracking-tight);
}

.signup-sidebar-period {
  font-family: var(--font-data);
  font-size: var(--text-small);
  color: var(--color-text-on-dark-muted);
  align-self: flex-end;
  margin-bottom: 0.25rem;
}

.signup-sidebar-annual {
  font-size: var(--text-xs);
  color: var(--color-text-on-dark-muted);
  margin-bottom: var(--space-4);
}

.signup-sidebar-annual strong {
  color: var(--color-gold);
}

.signup-sidebar-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border-dark);
  margin-bottom: var(--space-4);
}

.signup-sidebar-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-on-dark-sub);
  line-height: var(--leading-snug);
}

.signup-sidebar-feature span:first-child {
  color: var(--color-gold);
  flex-shrink: 0;
}

.signup-sidebar-guarantee {
  background-color: var(--color-gold-subtle);
  border: 1px solid rgba(244, 196, 48, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
}

.signup-sidebar-guarantee-title {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--color-gold);
  margin-bottom: var(--space-1);
}

.signup-sidebar-guarantee-body {
  font-size: var(--text-xs);
  color: var(--color-text-on-dark-sub);
  line-height: var(--leading-relaxed);
}

.signup-sidebar-trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.signup-sidebar-trust-item {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
}

/* ============================================================
   === LEGAL PAGE COMPONENTS (Privacy + Terms) ===
   ============================================================ */

.legal-section {
  background-color: var(--color-white);
  padding-block: var(--section-padding-y);
}

.legal-content {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.legal-content p {
  font-size: var(--text-body);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
  line-height: var(--leading-snug);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-2);
}

.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-h4);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
  line-height: var(--leading-snug);
}

.legal-content ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-left: var(--space-4);
  list-style: disc;
}

.legal-content ul li {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  padding-left: var(--space-1);
}

.legal-content a {
  color: var(--color-gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: var(--weight-medium);
  transition: color var(--transition-fast);
}

.legal-content a:hover {
  color: var(--color-charcoal);
}

.legal-contact {
  font-style: normal;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
