:root {
  --ftv-ink: #1d2d3d;
  --ftv-deep: #1d2d3d;
  --ftv-teal: #00a854;
  --ftv-green: #00d26a;
  --ftv-green-hover: #00b85c;
  --ftv-mint: #e8f9ef;
  --ftv-amber: #f59e0b;
  --ftv-cream: #f7f8fa;
  --ftv-paper: #ffffff;
  --ftv-muted: #5f6f7d;
  --ftv-line: rgba(29, 45, 61, 0.12);
  --ftv-shadow: 0 16px 40px rgba(29, 45, 61, 0.1);
  --ftv-font-display: "DM Sans", "Segoe UI", sans-serif;
  --ftv-font-body: "DM Sans", "Segoe UI", sans-serif;
  --ftv-rail-mint: #d9f5e8;
  --ftv-rail-peach: #ffe5d6;
  --ftv-rail-lilac: #ebe4ff;
  --ftv-rail-sky: #dcecff;
  --ftv-rail-butter: #fff2c9;
  --ftv-rail-rose: #ffe0eb;
}

body {
  font-family: var(--ftv-font-body);
  color: var(--ftv-ink);
  background: var(--ftv-paper);
  min-height: 100vh;
}

a {
  color: var(--ftv-teal);
  text-decoration: none;
}

a:hover {
  color: var(--ftv-ink);
}

.ftv-logo {
  width: 34px;
  height: 34px;
  margin-right: 0.5rem;
}

.ftv-brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--ftv-font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ftv-ink) !important;
}

.ftv-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ftv-line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.ftv-header .navbar {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.ftv-nav-links .nav-link {
  color: var(--ftv-ink);
  font-weight: 600;
  padding: 0.5rem 0.85rem;
}

.ftv-nav-cta {
  margin-left: 0.35rem;
  padding: 0.55rem 1.15rem !important;
}

.btn-ftv-primary,
.btn-ftv-outline,
.btn-ftv-ghost,
.btn-ftv-light {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.7rem 1.4rem;
}

.btn-ftv-primary {
  background: var(--ftv-green);
  border: 1px solid var(--ftv-green);
  color: #fff;
}

.btn-ftv-primary:hover,
.btn-ftv-primary:focus {
  background: var(--ftv-green-hover);
  border-color: var(--ftv-green-hover);
  color: #fff;
}

.btn-ftv-outline {
  background: transparent;
  border: 1px solid var(--ftv-ink);
  color: var(--ftv-ink);
}

.btn-ftv-outline:hover {
  background: rgba(29, 45, 61, 0.05);
  color: var(--ftv-ink);
}

.btn-ftv-ghost {
  background: transparent;
  border: 1px solid var(--ftv-line);
  color: var(--ftv-ink);
}

.btn-ftv-light {
  background: var(--ftv-mint);
  border: 1px solid var(--ftv-mint);
  color: var(--ftv-ink);
}

.ftv-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ftv-teal);
  margin-bottom: 0.75rem;
}

/* ——— Homepage (Blinkist-inspired) ——— */
.ftv-home {
  background: #fff;
}

.ftv-blink-h2 {
  font-family: var(--ftv-font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ftv-ink);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  margin-bottom: 0.85rem;
}

.ftv-blink-sub {
  color: var(--ftv-muted);
  font-size: 1.05rem;
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.ftv-hero-blink {
  padding: 4.5rem 0 0;
  overflow: hidden;
}

.ftv-hero-blink-title {
  font-family: var(--ftv-font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--ftv-ink);
  font-size: clamp(2.4rem, 6vw, 4rem);
  max-width: 16ch;
  margin: 0 auto 1rem;
}

.ftv-hero-blink-lead {
  color: var(--ftv-muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 34rem;
  margin: 0 auto 1.75rem;
  line-height: 1.5;
}

.ftv-hero-cta {
  padding: 0.9rem 2rem !important;
  font-size: 1.05rem !important;
}

.ftv-hero-devices {
  position: relative;
  margin-top: 3.5rem;
  padding: 0 1rem 3rem;
}

.ftv-hero-device-bg {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1100px, 100%);
  height: 58%;
  background: linear-gradient(180deg, #d7efff 0%, #eef7ff 55%, #fff 100%);
  border-radius: 40% 40% 0 0 / 60% 60% 0 0;
  z-index: 0;
}

.ftv-hero-device-stack {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.25rem;
  max-width: 920px;
  margin: 0 auto;
}

.ftv-hero-poster-card {
  width: min(220px, 28vw);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--ftv-rail-mint);
  box-shadow: var(--ftv-shadow);
  animation: ftv-rise-tilt 700ms ease both;
}

.ftv-hero-poster-card:nth-child(1) {
  --ftv-tilt: translateY(18px) rotate(-4deg);
  animation-delay: 40ms;
}

.ftv-hero-poster-card:nth-child(2) {
  width: min(250px, 32vw);
  --ftv-tilt: none;
  animation-delay: 120ms;
  z-index: 2;
}

.ftv-hero-poster-card:nth-child(3) {
  --ftv-tilt: translateY(22px) rotate(4deg);
  animation-delay: 200ms;
}

.ftv-hero-poster-card img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: #cfd8e3;
}

.ftv-hero-poster-fallback {
  aspect-ratio: 2 / 3;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ftv-ink);
}

.ftv-hero-poster-meta {
  background: var(--ftv-ink);
  color: #fff;
  padding: 0.7rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.ftv-hero-poster-meta strong {
  font-size: 0.9rem;
  line-height: 1.25;
}

.ftv-hero-poster-meta span {
  font-size: 0.75rem;
  opacity: 0.75;
}

.ftv-hero-poster-mint { background: var(--ftv-rail-mint); }
.ftv-hero-poster-peach { background: var(--ftv-rail-peach); }
.ftv-hero-poster-lilac { background: var(--ftv-rail-lilac); }

.ftv-benefit-section,
.ftv-explore-section,
.ftv-social-section,
.ftv-how-section,
.ftv-faq-blink,
.ftv-bottom-cta {
  padding: 4.75rem 0;
}

.ftv-benefit-list {
  max-width: 720px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.ftv-benefit-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.1rem;
  align-items: start;
}

.ftv-benefit-icon svg {
  width: 48px;
  height: 48px;
}

.ftv-benefit-item h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.ftv-benefit-item p {
  margin: 0;
  color: var(--ftv-muted);
  line-height: 1.55;
}

.ftv-explore-section {
  background: #f7f9fb;
  border-top: 1px solid var(--ftv-line);
  border-bottom: 1px solid var(--ftv-line);
}

.ftv-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 auto 1.75rem;
  max-width: 760px;
}

.ftv-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--ftv-line);
  background: #fff;
  color: var(--ftv-ink);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.55rem 1rem;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.ftv-pill:hover {
  background: var(--ftv-ink);
  border-color: var(--ftv-ink);
  color: #fff;
}

.ftv-show-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 210px);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.35rem 0.25rem 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.ftv-show-rail::-webkit-scrollbar {
  height: 8px;
}

.ftv-show-rail::-webkit-scrollbar-thumb {
  background: rgba(29, 45, 61, 0.2);
  border-radius: 999px;
}

.ftv-rail-card {
  scroll-snap-align: start;
  border-radius: 0.9rem;
  overflow: hidden;
  background: var(--ftv-rail-mint);
  box-shadow: 0 8px 24px rgba(29, 45, 61, 0.08);
}

.ftv-rail-mint { background: var(--ftv-rail-mint); }
.ftv-rail-peach { background: var(--ftv-rail-peach); }
.ftv-rail-lilac { background: var(--ftv-rail-lilac); }
.ftv-rail-sky { background: var(--ftv-rail-sky); }
.ftv-rail-butter { background: var(--ftv-rail-butter); }
.ftv-rail-rose { background: var(--ftv-rail-rose); }

.ftv-rail-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.ftv-rail-poster {
  padding: 1.1rem 1.1rem 0.75rem;
}

.ftv-rail-poster img,
.ftv-rail-fallback {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 0.65rem;
  display: block;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 24px rgba(29, 45, 61, 0.12);
}

.ftv-rail-fallback {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  font-weight: 800;
  font-size: 1rem;
}

.ftv-rail-foot {
  margin-top: auto;
  background: var(--ftv-ink);
  color: #fff;
  padding: 0.75rem 0.85rem;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.55rem;
  align-items: center;
  min-height: 72px;
}

.ftv-rail-play {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ftv-green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  padding-left: 2px;
}

.ftv-rail-foot strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.25;
}

.ftv-rail-foot span {
  display: block;
  font-size: 0.75rem;
  opacity: 0.72;
  margin-top: 0.1rem;
}

.ftv-social-section .ftv-blink-sub {
  margin-left: auto;
  margin-right: auto;
}

.ftv-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 820px;
  margin: 2.5rem auto;
}

.ftv-stat strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ftv-ink);
  line-height: 1.1;
}

.ftv-stat span {
  display: block;
  margin-top: 0.35rem;
  color: var(--ftv-muted);
  font-size: 0.95rem;
}

.ftv-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.ftv-quote-card {
  background: #fff;
  border: 1px solid var(--ftv-line);
  border-radius: 1rem;
  padding: 1.35rem 1.4rem;
  margin: 0;
  box-shadow: 0 8px 24px rgba(29, 45, 61, 0.05);
}

.ftv-quote-card p {
  margin: 0 0 1rem;
  color: var(--ftv-ink);
  line-height: 1.5;
  font-size: 1rem;
}

.ftv-quote-card footer {
  color: var(--ftv-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.ftv-how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.ftv-how-card {
  border: 1px solid var(--ftv-line);
  border-radius: 1rem;
  padding: 1.35rem 1.25rem;
  background: #fff;
  height: 100%;
}

.ftv-how-num {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--ftv-mint);
  color: var(--ftv-teal);
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.ftv-how-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

.ftv-how-card p {
  margin: 0;
  color: var(--ftv-muted);
  line-height: 1.5;
}

.ftv-faq-blink {
  background: #f7f9fb;
  border-top: 1px solid var(--ftv-line);
}

.ftv-faq-list {
  max-width: 720px;
  margin: 2rem auto 0;
}

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

.ftv-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: 0;
  padding: 1.15rem 0;
  text-align: left;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ftv-ink);
}

.ftv-faq-chevron {
  width: 0.65rem;
  height: 0.65rem;
  border-right: 2px solid var(--ftv-ink);
  border-bottom: 2px solid var(--ftv-ink);
  transform: rotate(45deg);
  transition: transform 160ms ease;
  flex: 0 0 auto;
  margin-top: -0.2rem;
}

.ftv-faq-q:not(.collapsed) .ftv-faq-chevron {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}

.ftv-faq-a {
  padding: 0 0 1.15rem;
  color: var(--ftv-muted);
  line-height: 1.55;
}

.ftv-bottom-cta {
  padding-bottom: 5.5rem;
}

.ftv-bottom-cta .ftv-blink-sub {
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.ftv-footer {
  border-top: 1px solid var(--ftv-line);
  background: #f3f5f7;
}

.ftv-footer-heading {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  color: var(--ftv-ink);
}

.ftv-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ftv-footer-list li {
  margin-bottom: 0.45rem;
}

.ftv-footer-list a {
  color: var(--ftv-muted);
  font-weight: 500;
}

.ftv-footer-list a:hover {
  color: var(--ftv-ink);
}

.ftv-footer-bottom {
  border-top: 1px solid var(--ftv-line);
  padding: 1.25rem 0 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.ftv-footer-mute {
  color: var(--ftv-muted);
  font-size: 0.9rem;
}

.ftv-footer-mute a {
  color: var(--ftv-muted);
  text-decoration: underline;
}

/* Legacy marketing / about helpers */
.ftv-hero-title,
.ftv-section-title,
.ftv-quiz-title {
  font-family: var(--ftv-font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.ftv-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
}

.ftv-hero-lead,
.ftv-section-lead {
  font-size: 1.1rem;
  color: var(--ftv-muted);
  max-width: 36rem;
}

.ftv-section {
  padding: 4.5rem 0;
}

.ftv-section-alt {
  background: #f7f9fb;
  border-top: 1px solid var(--ftv-line);
  border-bottom: 1px solid var(--ftv-line);
}

.ftv-cta-band {
  background: linear-gradient(135deg, #152433, #1d2d3d 55%, #243848);
  padding: 4rem 0;
}

.ftv-cta-band .ftv-section-lead {
  color: rgba(255, 255, 255, 0.8) !important;
}

.ftv-feature,
.ftv-about-card,
.ftv-founder,
.ftv-admin-panel {
  background: #fff;
  border: 1px solid var(--ftv-line);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
}

.ftv-feature h3,
.ftv-founder h3 {
  font-family: var(--ftv-font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.ftv-feature p,
.ftv-founder p {
  color: var(--ftv-muted);
  margin-bottom: 0;
}

.ftv-about-hero,
.ftv-legal {
  padding: 3.5rem 0 2rem;
}

.ftv-about-stat {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--ftv-line);
}

.ftv-about-stat:last-child {
  border-bottom: 0;
}

.ftv-about-stat strong {
  display: block;
  font-family: var(--ftv-font-display);
  font-size: 1.2rem;
  font-weight: 800;
}

.ftv-about-stat span {
  color: var(--ftv-muted);
}

.ftv-founder-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid rgba(0, 210, 106, 0.45);
}

.ftv-founder-role {
  color: var(--ftv-teal);
  font-weight: 700;
  margin-top: -0.35rem;
}

.ftv-legal h1 {
  font-family: var(--ftv-font-display);
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.ftv-legal-meta {
  color: var(--ftv-muted);
  margin-bottom: 1.5rem;
}

.ftv-legal section {
  margin: 2rem 0;
}

.ftv-legal h2 {
  font-family: var(--ftv-font-display);
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.ftv-legal h3 {
  font-size: 1.05rem;
  margin-top: 1rem;
}

.ftv-legal ul {
  padding-left: 1.2rem;
}

.ftv-legal li {
  margin-bottom: 0.4rem;
}

@keyframes ftv-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ftv-rise-tilt {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: var(--ftv-tilt, none);
  }
}

/* App */
.ftv-app-header {
  border-bottom: 1px solid var(--ftv-line);
  background: rgba(255, 255, 255, 0.92);
}

.ftv-app-main {
  padding-bottom: 3rem;
}

.ftv-quiz {
  max-width: 760px;
}

.ftv-quiz-progress {
  height: 6px;
  background: rgba(29, 45, 61, 0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.ftv-quiz-progress > div {
  height: 100%;
  background: linear-gradient(90deg, var(--ftv-green), #7ef0b0);
  transition: width 250ms ease;
}

.ftv-step-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ftv-teal);
}

.ftv-quiz-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.25rem;
}

.ftv-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.ftv-chip {
  border: 1px solid var(--ftv-line);
  background: #fff;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-weight: 600;
  color: var(--ftv-ink);
}

.ftv-chip.is-active {
  background: var(--ftv-ink);
  border-color: var(--ftv-ink);
  color: #fff;
}

.ftv-chip.is-static {
  cursor: default;
}

.ftv-slider-block {
  margin-bottom: 1.4rem;
}

.ftv-field-label {
  font-weight: 600;
}

.ftv-slider-value {
  font-family: var(--ftv-font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ftv-ink);
}

.ftv-range {
  width: 100%;
  accent-color: var(--ftv-green);
}

.ftv-field-help {
  color: var(--ftv-muted);
  font-size: 0.9rem;
  margin: 0.35rem 0 0;
}

.ftv-quiz-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.ftv-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.ftv-show-card {
  background: #fff;
  border: 1px solid var(--ftv-line);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(29, 45, 61, 0.06);
  display: flex;
  flex-direction: column;
}

.ftv-show-card-media {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  background: #e8eef3;
}

.ftv-show-card-media img,
.ftv-detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #1d2d3d;
}

.ftv-show-card-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: grid;
  place-items: center;
  font-family: var(--ftv-font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--ftv-ink);
  background: linear-gradient(160deg, #d9f5e8, #dcecff);
}

.ftv-match-badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  background: var(--ftv-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
}

.ftv-show-card-body {
  padding: 1rem 1.1rem 1.15rem;
}

.ftv-show-card-title {
  font-family: var(--ftv-font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
}

.ftv-show-card-title a {
  color: inherit;
}

.ftv-show-card-meta {
  color: var(--ftv-muted);
  font-size: 0.92rem;
}

.ftv-reason-list {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--ftv-muted);
  font-size: 0.9rem;
}

.ftv-feedback-row {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.ftv-feedback-btn {
  border: 1px solid var(--ftv-line);
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ftv-ink);
}

.ftv-feedback-btn:hover:not(:disabled) {
  border-color: var(--ftv-ink);
  background: rgba(29, 45, 61, 0.05);
}

.ftv-feedback-btn.is-selected {
  background: var(--ftv-ink);
  border-color: var(--ftv-ink);
  color: #fff;
}

.ftv-feedback-btn:disabled {
  opacity: 0.75;
  cursor: default;
}

.ftv-feedback-status {
  margin: 0.55rem 0 0;
  font-size: 0.85rem;
  color: var(--ftv-muted);
}

.ftv-feedback-status.is-success {
  color: var(--ftv-teal);
  font-weight: 600;
}

.ftv-feedback-status.is-error {
  color: #b42318;
}

.ftv-toast {
  background: var(--ftv-mint);
  border: 1px solid rgba(0, 210, 106, 0.3);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
}

.ftv-empty {
  background: #fff;
  border: 1px dashed var(--ftv-line);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.ftv-detail {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.ftv-detail-poster img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--ftv-shadow);
}

.ftv-score-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.ftv-score-pill {
  background: #fff;
  border: 1px solid var(--ftv-line);
  border-radius: 0.85rem;
  padding: 0.55rem 0.8rem;
  display: flex;
  gap: 0.65rem;
  align-items: center;
  text-transform: capitalize;
}

.ftv-back-link {
  font-weight: 600;
}

@media (max-width: 991px) {
  .ftv-how-grid,
  .ftv-quote-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .ftv-hero-blink {
    padding-top: 3rem;
  }

  .ftv-hero-device-stack {
    gap: 0.65rem;
  }

  .ftv-hero-poster-card:nth-child(1),
  .ftv-hero-poster-card:nth-child(3) {
    display: none;
  }

  .ftv-hero-poster-card:nth-child(2) {
    width: min(260px, 70vw);
  }

  .ftv-stat-row,
  .ftv-how-grid,
  .ftv-quote-grid {
    grid-template-columns: 1fr;
  }

  .ftv-detail {
    grid-template-columns: 1fr;
  }

  .ftv-detail-poster {
    max-width: 220px;
  }

  .ftv-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
