.trf-funnel,
.trf-success-shell,
.trf-cancel-shell {
  --trf-ink: #162033;
  --trf-muted: #5c6880;
  --trf-line: rgba(255, 255, 255, 0.34);
  --trf-panel: rgba(255, 255, 255, 0.68);
  --trf-panel-strong: rgba(255, 255, 255, 0.82);
  --trf-wash: radial-gradient(circle at top left, rgba(255, 173, 128, 0.34), transparent 32%),
    radial-gradient(circle at right center, rgba(73, 105, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #f7f8fc 0%, #edf2f8 100%);
  --trf-accent: #d25e22;
  --trf-accent-dark: #9d3f10;
  --trf-accent-soft: rgba(255, 240, 232, 0.9);
  --trf-green: #177147;
  --trf-green-soft: rgba(232, 247, 238, 0.9);
  --trf-shadow: 0 22px 60px rgba(25, 34, 57, 0.14);
  --trf-shadow-soft: 0 14px 30px rgba(25, 34, 57, 0.08);
  --trf-motion-fast: 180ms;
  --trf-motion-medium: 420ms;
  --trf-ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  color: var(--trf-ink);
}

.trf-funnel {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  position: relative;
  isolation: isolate;
}

.trf-success-shell,
.trf-cancel-shell {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  position: relative;
  isolation: isolate;
}

.trf-funnel::before,
.trf-success-shell::before,
.trf-cancel-shell::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: -1;
  background: var(--trf-wash);
  filter: saturate(1.1);
  pointer-events: none;
}

.trf-funnel::after,
.trf-success-shell::after,
.trf-cancel-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.32), transparent 34%),
    radial-gradient(circle at bottom right, rgba(210, 94, 34, 0.08), transparent 32%);
  pointer-events: none;
}

.trf-hero,
.trf-intake-form,
.trf-preview-card,
.trf-unlocked-report,
.trf-cancel-recovery,
.trf-status-card {
  border: 1px solid var(--trf-line);
  border-radius: 24px;
  background: var(--trf-panel);
  box-shadow: var(--trf-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.trf-shell-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--trf-shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.trf-shell-chrome__brand {
  display: grid;
  gap: 6px;
  max-width: 42rem;
}

.trf-shell-chrome__eyebrow {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--trf-muted);
}

.trf-shell-chrome__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--trf-ink);
}

.trf-shell-chrome__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.trf-shell-chrome__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.58);
  color: var(--trf-ink);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transition:
    transform var(--trf-motion-fast) var(--trf-ease-out),
    background-color var(--trf-motion-fast) var(--trf-ease-out),
    border-color var(--trf-motion-fast) var(--trf-ease-out),
    color var(--trf-motion-fast) var(--trf-ease-out),
    box-shadow var(--trf-motion-fast) var(--trf-ease-out);
}

.trf-shell-chrome__link:hover,
.trf-shell-chrome__link:focus-visible {
  background: rgba(210, 94, 34, 0.12);
  border-color: rgba(210, 94, 34, 0.22);
  color: var(--trf-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(157, 63, 16, 0.12);
}

.trf-shell-chrome__link--active {
  background: linear-gradient(135deg, rgba(210, 94, 34, 0.18), rgba(255, 255, 255, 0.76));
  border-color: rgba(210, 94, 34, 0.3);
  color: var(--trf-accent-dark);
  box-shadow: 0 12px 24px rgba(157, 63, 16, 0.12);
}

.trf-progress-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trf-progress-step {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: var(--trf-shadow-soft);
  transition:
    transform var(--trf-motion-fast) var(--trf-ease-out),
    border-color var(--trf-motion-fast) var(--trf-ease-out),
    background-color var(--trf-motion-fast) var(--trf-ease-out),
    box-shadow var(--trf-motion-fast) var(--trf-ease-out);
}

.trf-progress-step--active {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(210, 94, 34, 0.3);
  box-shadow: 0 18px 32px rgba(157, 63, 16, 0.12);
  transform: translateY(-2px);
}

.trf-progress-step--complete {
  background: rgba(232, 247, 238, 0.7);
  border-color: rgba(23, 113, 71, 0.2);
}

.trf-progress-step__eyebrow {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--trf-muted);
}

.trf-progress-step h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.trf-progress-step p {
  margin: 0;
  color: var(--trf-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.trf-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 24px;
  padding: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(242, 246, 252, 0.58));
  position: relative;
  overflow: hidden;
}

.trf-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -32% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 94, 34, 0.14), transparent 68%);
  pointer-events: none;
}

.trf-eyebrow,
.trf-section-heading__eyebrow,
.trf-hero__card-label,
.trf-preview-meta__label,
.trf-preview-score__label {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--trf-accent);
}

.trf-section-heading {
  display: grid;
  gap: 8px;
}

.trf-hero h2,
.trf-status-card h2,
.trf-intake-form h3,
.trf-preview-card h3,
.trf-unlocked-report h2,
.trf-cancel-recovery h3 {
  margin: 0;
  line-height: 1.05;
}

.trf-hero h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  max-width: 13ch;
}

.trf-hero__lead,
.trf-section-heading p,
.trf-unlocked-report__subheadline,
.trf-preview-score__subheadline,
.trf-status-card p,
.trf-cancel-recovery p,
.trf-preview-value p {
  color: var(--trf-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.trf-hero__proof,
.trf-hero__steps,
.trf-preview-list,
.trf-preview-tags,
.trf-preview-value ul,
.trf-unlocked-report ul,
.trf-cancel-recovery ul {
  margin: 0;
  padding-left: 1.2rem;
}

.trf-hero__proof li,
.trf-hero__steps li,
.trf-preview-list li,
.trf-preview-value li,
.trf-unlocked-report li,
.trf-cancel-recovery li {
  margin-bottom: 0.65rem;
  line-height: 1.5;
}

.trf-hero__card {
  padding: 24px;
  border-radius: 20px;
  background: var(--trf-panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--trf-shadow-soft);
}

.trf-intake-form,
.trf-preview-card,
.trf-unlocked-report,
.trf-cancel-recovery,
.trf-status-card {
  padding: 28px;
}

.trf-intake-form {
  display: grid;
  gap: 10px;
}

.trf-intake-form .trf-section-heading,
.trf-preview-card .trf-preview-score,
.trf-preview-section,
.trf-preview-value,
.trf-unlocked-report__summary,
.trf-unlocked-report__recommendations,
.trf-cancel-recovery {
  position: relative;
  overflow: hidden;
}

.trf-intake-form .trf-section-heading::after,
.trf-preview-section::after,
.trf-preview-value::after,
.trf-unlocked-report__summary::after,
.trf-unlocked-report__recommendations::after,
.trf-cancel-recovery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 60%);
  pointer-events: none;
}

.trf-intake-form label {
  font-weight: 700;
  color: var(--trf-ink);
}

.trf-funnel input,
.trf-funnel textarea,
.trf-funnel button,
.trf-cancel-recovery__action,
.trf-unlocked-report__cta {
  width: 100%;
  box-sizing: border-box;
}

.trf-funnel input,
.trf-funnel textarea {
  margin-top: 6px;
  margin-bottom: 10px;
  padding: 14px 16px;
  border: 1px solid var(--trf-line);
  border-radius: 16px;
  font: inherit;
  color: var(--trf-ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    border-color var(--trf-motion-fast) var(--trf-ease-out),
    box-shadow var(--trf-motion-fast) var(--trf-ease-out),
    transform var(--trf-motion-fast) var(--trf-ease-out),
    background-color var(--trf-motion-fast) var(--trf-ease-out);
}

.trf-funnel textarea {
  min-height: 180px;
  resize: vertical;
}

.trf-funnel button,
.trf-cancel-recovery__action,
.trf-unlocked-report__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 15px 18px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--trf-accent) 0%, var(--trf-accent-dark) 100%);
  box-shadow: 0 16px 28px rgba(157, 63, 16, 0.24);
  cursor: pointer;
  transition:
    transform var(--trf-motion-fast) var(--trf-ease-out),
    box-shadow var(--trf-motion-fast) var(--trf-ease-out),
    filter var(--trf-motion-fast) var(--trf-ease-out),
    opacity var(--trf-motion-fast) var(--trf-ease-out),
    background-color var(--trf-motion-fast) var(--trf-ease-out);
}

.trf-funnel button:hover,
.trf-cancel-recovery__action:hover,
.trf-unlocked-report__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(157, 63, 16, 0.28);
}

.trf-funnel button:focus-visible,
.trf-funnel input:focus-visible,
.trf-funnel textarea:focus-visible,
.trf-cancel-recovery__action:focus-visible,
.trf-unlocked-report__cta:focus-visible {
  outline: 3px solid rgba(210, 94, 34, 0.2);
  outline-offset: 3px;
  border-color: rgba(210, 94, 34, 0.35);
  box-shadow: 0 0 0 4px rgba(210, 94, 34, 0.1);
}

.trf-funnel button[disabled] {
  opacity: 0.6;
  cursor: progress;
  transform: none;
  box-shadow: none;
}

.trf-button-loading {
  position: relative;
  overflow: hidden;
}

.trf-button-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.24) 48%, transparent 76%);
  transform: translateX(-130%);
}

.trf-form-note,
.trf-preview-reassurance,
.trf-cancel-recovery__note {
  margin: 0;
  color: var(--trf-muted);
  font-size: 0.93rem;
}

.trf-preview-card,
.trf-unlocked-report {
  display: grid;
  gap: 20px;
}

.trf-preview-score {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(140deg, rgba(20, 26, 40, 0.94) 0%, rgba(35, 47, 72, 0.94) 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 46px rgba(17, 22, 36, 0.22);
}

.trf-preview-score::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 40%),
    radial-gradient(circle at bottom left, rgba(255, 140, 80, 0.18), transparent 36%);
  pointer-events: none;
}

.trf-preview-score h3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.trf-preview-score__label,
.trf-preview-score__subheadline {
  color: rgba(255, 255, 255, 0.82);
}

.trf-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.trf-preview-section--span {
  grid-column: 1 / -1;
}

.trf-preview-section,
.trf-preview-value,
.trf-unlocked-report__summary,
.trf-unlocked-report__recommendations {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(251, 252, 254, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--trf-shadow-soft);
}

.trf-preview-section h4,
.trf-preview-value h4,
.trf-unlocked-report__summary h3,
.trf-unlocked-report__recommendations h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.trf-preview-proof__intro {
  margin: 0 0 14px;
  color: var(--trf-muted);
}

.trf-preview-proof-points {
  margin: 14px 0 0;
  padding-left: 1.15rem;
}

.trf-preview-proof-points li {
  margin-bottom: 0.55rem;
  color: var(--trf-ink);
  line-height: 1.5;
}

.trf-preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.trf-preview-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.trf-preview-tag--strength {
  color: var(--trf-green);
  background: var(--trf-green-soft);
}

.trf-preview-tag--gap {
  color: var(--trf-accent-dark);
  background: var(--trf-accent-soft);
}

.trf-preview-value {
  background:
    linear-gradient(180deg, rgba(255, 248, 243, 0.84) 0%, rgba(255, 255, 255, 0.78) 100%);
  border: 1px solid rgba(210, 94, 34, 0.18);
}

.trf-preview-cta {
  display: grid;
  gap: 10px;
}

.trf-preview-cta button {
  width: auto;
  min-width: 280px;
}

.trf-preview-cta__body {
  margin: 0;
  color: var(--trf-muted);
}

.trf-preview-live-note {
  margin: 0;
  color: var(--trf-accent-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.trf-status-card--success {
  background: linear-gradient(180deg, rgba(238, 247, 240, 0.9) 0%, rgba(255, 255, 255, 0.72) 100%);
}

.trf-status-card--cancel {
  background: linear-gradient(180deg, rgba(255, 245, 239, 0.9) 0%, rgba(255, 255, 255, 0.72) 100%);
}

.trf-unlocked-report {
  margin-top: 20px;
}

.trf-unlocked-report__hero {
  display: grid;
  gap: 10px;
}

.trf-unlocked-report__summary p,
.trf-unlocked-report__recommendations li,
.trf-preview-section p {
  color: var(--trf-muted);
}

.trf-cancel-recovery {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.trf-cancel-recovery__actions a,
.trf-cancel-recovery__actions button {
  min-width: 220px;
}

.trf-cancel-recovery__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trf-cancel-recovery__action--secondary {
  color: var(--trf-accent-dark);
  background: rgba(255, 241, 233, 0.84);
  border: 1px solid rgba(210, 94, 34, 0.18);
  box-shadow: var(--trf-shadow-soft);
}

.trf-empty-state {
  padding: 22px;
  border-radius: 20px;
  border: 1px dashed rgba(95, 108, 132, 0.26);
  color: var(--trf-muted);
  background: rgba(251, 252, 254, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.trf-funnel a {
  color: var(--trf-accent-dark);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

.trf-funnel a:hover {
  color: var(--trf-accent);
}

.trf-funnel :is(ul, ol) {
  padding-left: 1.15rem;
}

.trf-funnel :is(li)::marker {
  color: var(--trf-accent);
}

body:has(.trf-funnel) .wp-block-navigation,
body:has(.trf-success-shell) .wp-block-navigation,
body:has(.trf-cancel-shell) .wp-block-navigation {
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--trf-shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body:has(.trf-funnel) .wp-block-navigation__container,
body:has(.trf-success-shell) .wp-block-navigation__container,
body:has(.trf-cancel-shell) .wp-block-navigation__container {
  gap: 0.35rem;
}

body:has(.trf-funnel) .wp-block-navigation-item__content,
body:has(.trf-success-shell) .wp-block-navigation-item__content,
body:has(.trf-cancel-shell) .wp-block-navigation-item__content {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition:
    background-color var(--trf-motion-fast) var(--trf-ease-out),
    color var(--trf-motion-fast) var(--trf-ease-out),
    transform var(--trf-motion-fast) var(--trf-ease-out),
    box-shadow var(--trf-motion-fast) var(--trf-ease-out);
}

body:has(.trf-funnel) .wp-block-navigation-item__content:hover,
body:has(.trf-success-shell) .wp-block-navigation-item__content:hover,
body:has(.trf-cancel-shell) .wp-block-navigation-item__content:hover {
  background: rgba(210, 94, 34, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(25, 34, 57, 0.08);
}

body:has(.trf-funnel) .wp-block-navigation-item__content:focus-visible,
body:has(.trf-success-shell) .wp-block-navigation-item__content:focus-visible,
body:has(.trf-cancel-shell) .wp-block-navigation-item__content:focus-visible {
  outline: 3px solid rgba(210, 94, 34, 0.18);
  outline-offset: 2px;
}

body:has(.trf-funnel) .wp-block-site-title a,
body:has(.trf-success-shell) .wp-block-site-title a,
body:has(.trf-cancel-shell) .wp-block-site-title a {
  color: var(--trf-ink);
}

body:has(.trf-funnel),
body:has(.trf-success-shell),
body:has(.trf-cancel-shell) {
  background:
    radial-gradient(circle at top left, rgba(255, 196, 160, 0.35), transparent 20%),
    radial-gradient(circle at top right, rgba(86, 116, 255, 0.15), transparent 18%),
    linear-gradient(180deg, #f6f8fc 0%, #edf2f7 100%);
}

@media (max-width: 900px) {
  .trf-shell-chrome,
  .trf-hero,
  .trf-preview-grid {
    grid-template-columns: 1fr;
  }

  .trf-shell-chrome {
    display: grid;
    justify-content: stretch;
  }

  .trf-shell-chrome__menu {
    justify-content: flex-start;
  }

  .trf-preview-cta button {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .trf-motion-block,
  .trf-motion-shell {
    opacity: 0;
    transform: translateY(18px);
  }

  .trf-animate-in {
    animation: trf-rise-in var(--trf-motion-medium) var(--trf-ease-out) forwards;
    animation-delay: calc(var(--trf-stagger-index, 0) * 140ms);
  }

  .trf-motion-shell.trf-animate-in {
    animation-duration: 360ms;
  }

  .trf-button-loading::after {
    animation: trf-button-sheen 1.2s var(--trf-ease-out) infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trf-motion-block,
  .trf-motion-shell {
    opacity: 1;
    transform: none;
  }

  .trf-button-loading::after {
    animation: none;
    transform: none;
  }
}

@keyframes trf-rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trf-button-sheen {
  0% {
    transform: translateX(-130%);
  }

  100% {
    transform: translateX(130%);
  }
}

body:has(.trf-funnel) .wp-site-blocks,
body:has(.trf-success-shell) .wp-site-blocks,
body:has(.trf-cancel-shell) .wp-site-blocks {
  min-height: 100vh;
}

body:has(.trf-funnel) .wp-site-blocks > header,
body:has(.trf-success-shell) .wp-site-blocks > header,
body:has(.trf-cancel-shell) .wp-site-blocks > header {
  position: sticky;
  top: 0;
  z-index: 20;
  margin: 18px auto 0;
  padding: 0 18px;
  max-width: 1200px;
}

body:has(.trf-funnel) .wp-site-blocks > header > *,
body:has(.trf-success-shell) .wp-site-blocks > header > *,
body:has(.trf-cancel-shell) .wp-site-blocks > header > * {
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: var(--trf-shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body:has(.trf-funnel) .wp-site-blocks > main,
body:has(.trf-success-shell) .wp-site-blocks > main,
body:has(.trf-cancel-shell) .wp-site-blocks > main {
  padding: 40px 18px 64px;
}

body:has(.trf-funnel) .wp-site-blocks > footer,
body:has(.trf-success-shell) .wp-site-blocks > footer,
body:has(.trf-cancel-shell) .wp-site-blocks > footer {
  margin: 0 auto 24px;
  padding: 0 18px;
  max-width: 1200px;
}

body:has(.trf-funnel) .wp-site-blocks > footer > *,
body:has(.trf-success-shell) .wp-site-blocks > footer > *,
body:has(.trf-cancel-shell) .wp-site-blocks > footer > * {
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: var(--trf-shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

@media (max-width: 860px) {
  .trf-progress-strip,
  .trf-shell-chrome,
  .trf-hero,
  .trf-preview-grid {
    grid-template-columns: 1fr;
  }

  .trf-shell-chrome {
    flex-direction: column;
    align-items: stretch;
  }

  .trf-shell-chrome__menu {
    justify-content: flex-start;
  }

  .trf-preview-cta button,
  .trf-cancel-recovery__action {
    width: 100%;
  }

  .trf-cancel-recovery__actions {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .trf-shell-chrome,
  .trf-hero,
  .trf-intake-form,
  .trf-preview-card,
  .trf-unlocked-report,
  .trf-cancel-recovery,
  .trf-status-card {
    border-radius: 20px;
    padding: 20px;
  }

  .trf-hero h2 {
    max-width: 100%;
  }

  .trf-hero__card,
  .trf-preview-section,
  .trf-preview-value,
  .trf-unlocked-report__summary,
  .trf-unlocked-report__recommendations {
    border-radius: 18px;
    padding: 18px;
  }

  .trf-shell-chrome__link {
    width: 100%;
  }
}
